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

  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
datastore_range_iterators.py 166 for model_instance in self._query.run(
169 yield model_instance
175 for model_instance in self._query:
176 yield model_instance
246 for model_instance in itertools.chain.from_iterable(self._iters):
247 yield model_instance
434 for model_instance in self._query.run(
437 yield model_instance
443 for model_instance in self._query:
444 yield model_instance
    [all...]
json_util.py 170 def get_value_for_datastore(self, model_instance):
174 model_instance: instance of the model class.
179 value = super(JsonProperty, self).get_value_for_datastore(model_instance)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
property.py 102 def get_value_for_datastore(self, model_instance):
103 return getattr(model_instance, self.name)
219 def get_value_for_datastore(self, model_instance):
220 value = super(PasswordProperty, self).get_value_for_datastore(model_instance)
300 def get_value_for_datastore(self, model_instance):
301 value = super(S3KeyProperty, self).get_value_for_datastore(model_instance)
418 def get_value_for_datastore(self, model_instance):
420 setattr(model_instance, self.name, self.now())
421 return super(DateTimeProperty, self).get_value_for_datastore(model_instance)
450 def get_value_for_datastore(self, model_instance)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
tunes_db_test.py 85 def AssertArtistMatches(self, model_instance, message):
89 model_instance: Datastore model instance of artist to check against.
92 self.assertEquals(str(model_instance.key()), message.artist_id)
93 self.assertEquals(str(model_instance.name), message.name)
95 def AssertAlbumMatches(self, model_instance, message):
99 model_instance: Datastore model instance of album to check against.
102 self.assertEquals(model_instance.name, message.name)
103 self.assertEquals(str(model_instance.key()), message.album_id)
104 self.assertEquals(model_instance.released, message.released)
105 self.assertEquals(str(model_instance.artist.key()), message.artist_id
    [all...]
tunes_db.py 390 model_instance = query.fetch(fetch_size)
393 if model_instance:
394 results = [model_to_message(i) for i in model_instance]
395 if len(model_instance) == fetch_size:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
appengine.py 220 def get_value_for_datastore(self, model_instance):
222 self).get_value_for_datastore(model_instance)
280 def get_value_for_datastore(self, model_instance):
281 logger.info("get: Got type " + str(type(model_instance)))
283 self).get_value_for_datastore(model_instance)
    [all...]
  /external/autotest/scheduler/
monitor_db_functional_test.py 412 def _update_instance(self, model_instance):
413 return type(model_instance).objects.get(pk=model_instance.pk)
    [all...]

Completed in 255 milliseconds