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

  /external/chromium_org/chrome/common/extensions/docs/server2/
test_object_store_test.py 13 self.assertEqual({}, store.GetMulti(['hi', 'lo']).Get())
19 self.assertEqual({'hi': 'bye'}, store.GetMulti(['hi', 'lo']).Get())
22 self.assertEqual({'hi': 'blah'}, store.GetMulti(['hi', 'lo']).Get())
25 self.assertEqual({}, store.GetMulti(['hi', 'lo']).Get())
object_store.py 22 return Future(delegate=_SingleGetFuture(self.GetMulti([key]), key))
24 def GetMulti(self, keys):
cache_chain_object_store.py 9 '''A Future for GetMulti.
14 is the result of calling GetMulti on the missing keys for the object store.
16 - |missing_keys| the keys that were missing from the GetMulti call
84 def GetMulti(self, keys):
93 object_store_futures = [(object_store, object_store.GetMulti(missing_keys))
memcache_object_store.py 32 def GetMulti(self, keys):
persistent_object_store.py 38 def GetMulti(self, keys):
cache_chain_object_store_test.py 76 }, self._store.GetMulti(('commands.html',
93 }, self._store.GetMulti(('commands.html',
104 }, self._store.GetMulti(('commands.html', 'storage.html')).Get())
112 }, self._store.GetMulti(('commands.html', 'runtime.html')).Get())
130 }, self._store.GetMulti(('runtime.html', 'notfound.html')).Get())
caching_file_system.py 88 read_values = read_object_store.GetMulti(paths).Get()
89 stat_values = self._stat_object_store.GetMulti(paths).Get()
test_object_store.py 28 def GetMulti(self, keys):
caching_rietveld_patcher.py 108 GetMulti([_MakeKey(path, version) for path in paths]).Get(), binary)
github_file_system.py 88 password_data = password_store.GetMulti(('username', 'password')).Get()

Completed in 105 milliseconds