HomeSort by relevance Sort by last modified time
    Searched refs:datastore (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/test/ispy/common/
mock_cloud_bucket.py 18 """Initializes the MockCloudBucket with its datastore.
23 self.datastore = {}
26 """Clears the MockCloudBucket's datastore."""
27 self.datastore = {}
31 self.datastore[path] = contents
35 if self.datastore.has_key(path):
36 return self.datastore[path]
48 if self.datastore.has_key(path):
49 self.datastore.pop(path)
53 return self.datastore.has_key(path
    [all...]
ispy_utils_unittest.py 29 # Upload some images to the datastore.
34 self.assertEquals(self.bucket.datastore['path/to/white.png'],
36 self.assertEquals(self.bucket.datastore['path/to/black.png'],
38 self.assertEquals(self.bucket.datastore['path/to/red.png'],
43 # Upload some images to the datastore.
68 # Upload some images to the datastore.
70 self.assertEquals(self.bucket.datastore['path/to/image.png'],
74 self.assertEquals(self.bucket.datastore['path/to/image.png'],
79 # Upload some tests to the datastore.
84 self.assertEquals(self.bucket.datastore[
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
appengine_blobstore.py 5 import blob_reference_store as datastore namespace
20 datastore.
35 self._datastore.Set(datastore.BLOB_REFERENCE_BLOBSTORE, key, blob_key)
41 blob_key = self._datastore.Get(datastore.BLOB_REFERENCE_BLOBSTORE, key)
51 blob_key = self._datastore.Delete(datastore.BLOB_REFERENCE_BLOBSTORE, key)
instance_servlet.py 19 DataStore, which is as far as instances look. To enable this, crons can pass
26 Gitiles. If anything is missing from datastore, it'll be a 404. If the
new_github_file_system.py 164 logging.warning('No blob for %s found in datastore' % repo_key)
279 assert version is not None, ('There was a zipball in datastore; there '
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 19 to/from SampleSyncAdapter datastore.
30 from model import datastore namespace
69 model = datastore.Contact
103 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
109 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
126 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
143 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
154 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
171 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
185 contacts = datastore.Contact.all(
    [all...]
web_services.py 33 from model import datastore namespace
184 contacts = datastore.Contact.all()
238 contact = datastore.Contact.get(db.Key.from_path('Contact', id))
242 contact = datastore.Contact(handle='temp')
311 contacts = datastore.Contact.all()
316 contact1 = datastore.Contact(handle = 'juliet',
324 contact2 = datastore.Contact(handle = 'romeo',
332 contact3 = datastore.Contact(handle = 'tybalt',
365 obj = datastore.Contact.get_contact_info(username)
383 obj = datastore.Contact.get_contact_info(username
    [all...]
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
api_utils.py 35 from google.appengine.datastore import datastore_rpc
42 from google.appengine.datastore import datastore_rpc
139 save_access_token: persist access token to datastore to avoid

Completed in 4006 milliseconds