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

  /external/chromium_org/chrome/common/extensions/docs/server2/
offline_file_system.py 16 def Read(self, paths, skip_not_found=False):
17 if skip_not_found: return Future(value={})
empty_dir_file_system.py 14 def Read(self, paths, skip_not_found=False):
18 if skip_not_found: continue
chroot_file_system.py 26 def Read(self, paths, skip_not_found=False):
39 skip_not_found-skip_not_found).Then(next)
chained_compiled_file_system.py 49 def GetFromFile(self, path, skip_not_found=False):
52 lambda cfs: cfs.GetFromFile(path, skip_not_found=skip_not_found),
gitiles_file_system.py 87 def _ResolveFetchContent(self, path, fetch_future, skip_not_found=False):
91 if skip_not_found and IsDownloadError(e):
99 if skip_not_found:
117 def Read(self, paths, skip_not_found=False):
157 return All(self._ResolveFetchContent(path, future, skip_not_found)
mock_file_system.py 40 def Read(self, paths, skip_not_found=False):
53 skip_not_found=skip_not_found).Then(next)
patched_file_system.py 18 def Read(self, paths, skip_not_found=False):
49 skip_not_found=skip_not_found).Then(next)
caching_file_system.py 79 def Read(self, paths, skip_not_found=False):
103 if skip_not_found:
117 if skip_not_found:
142 skip_not_found=skip_not_found).Then(next)
gitiles_file_system_test.py 62 skip_not_found=True).Get().get(path, None)
142 f = self._gitiles_fs.Read(['fakefile'], skip_not_found=True)
local_file_system.py 81 def Read(self, paths, skip_not_found=False):
94 if skip_not_found:
compiled_file_system.py 217 def GetFromFile(self, path, skip_not_found=False):
219 If |skip_not_found| is True, then None is passed to |compilation_function|.
226 if skip_not_found:
241 path, skip_not_found=skip_not_found).Then(compile_)
subversion_file_system.py 120 def Read(self, paths, skip_not_found=False):
147 if skip_not_found and IsDownloadError(e): continue
153 if skip_not_found: continue
caching_file_system_test.py 162 # Test skip_not_found caching behavior.
164 future = file_system.ReadSingle('bob/no_file', skip_not_found=True)
168 future = file_system.ReadSingle('bob/no_file', skip_not_found=True)
175 # trying to read one without specifiying skip_not_found should
247 return caching_fs.Read(paths, skip_not_found=True).Get()
owners_data_source.py 82 self._owners_fs.GetFromFile(owners_file, skip_not_found=True))
compiled_file_system_test.py 210 future = compiled_fs.GetFromFile('no_file', skip_not_found=True)
215 future = compiled_fs.GetFromFile('no_file', skip_not_found=True)
file_system.py 81 def Read(self, paths, skip_not_found=False):
89 - If |skip_not_found| is True, the resulting object will not contain any
99 def ReadSingle(self, path, skip_not_found=False):
102 or if |skip_not_found| is True then return None.
105 read_single = self.Read([path], skip_not_found=skip_not_found)
test_file_system.py 117 def Read(self, paths, skip_not_found=False):
120 if skip_not_found: continue
gcs_file_system.py 82 def Read(self, paths, skip_not_found=False):
subversion_file_system_test.py 139 skip_not_found=True).Get())
github_file_system.py 149 def Read(self, paths, skip_not_found=False):
new_github_file_system.py 242 def Read(self, paths, skip_not_found=False):

Completed in 543 milliseconds