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

  /external/chromium_org/chrome/common/extensions/docs/server2/
object_store_creator.py 22 start_empty=_unspecified,
31 if start_empty is _unspecified:
32 raise ValueError('start_empty must be specified (typically False)')
33 self._start_empty = start_empty
40 def ForTest(start_empty=False,
43 return ObjectStoreCreator(start_empty=start_empty,
51 start_empty=_unspecified,
54 if start_empty is not _unspecified:
55 start_empty = bool(start_empty
    [all...]
object_store_creator_test.py 17 self._creator = ObjectStoreCreator(start_empty=False,
26 self.assertFalse(store.start_empty)
33 self.assertFalse(store.start_empty)
38 self.assertFalse(store.start_empty)
41 store = self._creator.Create(_FooClass, start_empty=True)
42 self.assertTrue(store.start_empty)
43 store = self._creator.Create(_FooClass, start_empty=False)
44 self.assertFalse(store.start_empty)
test_object_store.py 14 def __init__(self, namespace, start_empty=False, init=None):
16 self.start_empty = start_empty
18 if start_empty:
caching_file_system_test.py 30 def _CreateCachingFileSystem(self, fs, start_empty=False):
31 def store_type_constructor(namespace, start_empty=False):
38 if start_empty:
41 object_store_creator = ObjectStoreCreator(start_empty=start_empty,
47 _CreateLocalFs(), start_empty=False)
59 _CreateLocalFs(), start_empty=False)
83 return self._CreateCachingFileSystem(mock_fs, start_empty=True)
171 file_system = self._CreateCachingFileSystem(mock_fs, start_empty=False)
207 file_system = self._CreateCachingFileSystem(mock_fs, start_empty=True
    [all...]
cache_chain_object_store.py 17 - When getting items, the behaviour depends on |start_empty|.
25 def __init__(self, object_stores, start_empty=False):
27 self._start_empty = start_empty
caching_rietveld_patcher_test.py 35 ObjectStoreCreator(start_empty=False),
chained_compiled_file_system_test.py 33 object_store_creator = ObjectStoreCreator(start_empty=False)
instance_servlet.py 36 object_store_creator = ObjectStoreCreator(start_empty=False)
new_github_file_system.py 33 start_empty=False)
133 # Caches the zip file's stat. Overrides start_empty=False and use
136 GithubFileSystem, category='stat-cache', start_empty=False)
caching_file_system.py 27 # The read caches can start populated (start_empty=False) because file
31 self._read_object_store = create_object_store('read', start_empty=False)
patch_servlet.py 31 # start_empty=False because a patch can rely on files that are already in
34 object_store_creator = ObjectStoreCreator(start_empty=False)
server_instance.py 162 object_store_creator = ObjectStoreCreator(start_empty=False,
compiled_file_system_test.py 48 ObjectStoreCreator(start_empty=False,
github_file_system.py 80 start_empty=False)
cache_chain_object_store_test.py 167 start_empty=True)
compiled_file_system.py 82 # The read caches can start populated (start_empty=False) because file
91 start_empty=compilation_function not in _SINGLE_FILE_FUNCTIONS)

Completed in 83 milliseconds