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

  /external/chromium_org/tools/deep_memory_profiler/visualizer/
services.py 12 from google.appengine.ext import ndb namespace
15 class Profiler(ndb.Model):
18 blob_key = ndb.BlobKeyProperty()
21 class Template(ndb.Model):
24 content = ndb.JsonProperty()
34 prof_key = ndb.Key('Profiler', run_id)
46 profiler = ndb.Key('Profiler', run_id).get()
51 """Create Template entities for all templates of uploaded file. Return ndb.Key
66 tmpl_key = ndb.Key('Template', content_str)
80 tmpl_key = ndb.Key('Template', content_str
    [all...]
app_unittest.py 13 from google.appengine.ext import ndb namespace
72 template_entity = ndb.Key('Template', json.dumps(content)).get()
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
rest_api.py 31 from google.appengine.ext import ndb namespace
34 from google.appengine.ext import ndb namespace
80 class _AE_TokenStorage_(ndb.Model):
83 token = ndb.StringProperty()
84 expires = ndb.FloatProperty()
87 @ndb.tasklet
102 raise ndb.Return((token, expires_at))
159 @ndb.tasklet
201 raise ndb.Return((resp.status_code, resp.headers, resp.content))
203 @ndb.taskle
    [all...]
api_utils.py 36 from google.appengine.ext.ndb import eventloop
37 from google.appengine.ext.ndb import utils
45 from google.appengine.ext.ndb import eventloop
46 from google.appengine.ext.ndb import utils
286 Usually ndb eventloop el isn't run until some code calls future.get_result().
storage_api.py 37 from google.appengine.ext import ndb namespace
40 from google.appengine.ext import ndb namespace
85 A ndb Future. When fulfilled, future.get_result() should return
114 @ndb.tasklet
134 raise ndb.Return(resp_tuple)
412 @ndb.tasklet
436 raise ndb.Return(content)
445 ndb tasklet. One of them would return first and set the first value.
  /external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
main.py 33 from google.appengine.ext import ndb namespace
57 class LogEntry(ndb.Model):
58 content = ndb.TextProperty()
59 date = ndb.DateTimeProperty(auto_now_add=True)
60 is_no_needs_rebaseline = ndb.BooleanProperty()

Completed in 78 milliseconds