HomeSort by relevance Sort by last modified time
    Searched refs:FileNotFoundError (Results 26 - 47 of 47) sorted by null

12

  /external/chromium_org/chrome/common/extensions/docs/server2/
api_models.py 10 from file_system import FileNotFoundError
133 return Race(futures, except_pass=(FileNotFoundError, ValueError))
176 return All(futures, except_pass=(FileNotFoundError, ValueError))
183 except FileNotFoundError:
gitiles_file_system.py 17 from file_system import (FileNotFoundError,
93 exc_type = FileNotFoundError if IsDownloadError(e) else FileSystemError
101 raise FileNotFoundError('Got 404 when fetching %s for Get from %s' %
219 raise FileNotFoundError(
api_data_source.py 10 from file_system import FileNotFoundError
106 return All([future], except_pass=FileNotFoundError)
caching_rietveld_patcher.py 6 from file_system import FileNotFoundError
47 raise FileNotFoundError('File %s was not found in the patch.' % path)
mock_file_system.py 7 from file_system import FileSystem, FileNotFoundError
65 except FileNotFoundError:
mock_file_system_test.py 7 from file_system import FileNotFoundError, StatInfo
62 self.assertRaises(FileNotFoundError, future.Get)
compiled_file_system.py 8 from file_system import FileNotFoundError
188 except FileNotFoundError:
225 except FileNotFoundError:
251 except FileNotFoundError:
caching_file_system.py 8 from file_system import FileSystem, StatInfo, FileNotFoundError
55 raise FileNotFoundError('No stat found for %s in %s (found %s)' %
64 assert dir_stat is not None # should have raised a FileNotFoundError
95 if isinstance(error, FileNotFoundError):
content_provider_test.py 13 from file_system import FileNotFoundError
188 FileNotFoundError,
203 FileNotFoundError,
reference_resolver.py 9 from file_system import FileNotFoundError
65 except FileNotFoundError:
126 except FileNotFoundError:
new_github_file_system.py 16 from file_system import FileNotFoundError, FileSystem, FileSystemError, StatInfo
252 raise FileNotFoundError('"%s": %s not found' % (self._repo_key, path))
275 raise FileNotFoundError('"%s" does not contain file "%s"' %
new_github_file_system_test.py 16 from file_system import FileNotFoundError, StatInfo
163 self.assertRaises(FileNotFoundError, self._gfs.Stat, 'DONT_README.md')
164 self.assertRaises(FileNotFoundError,
rietveld_patcher.py 9 from file_system import FileNotFoundError
128 raise FileNotFoundError(
test_file_system.py 5 from file_system import FileSystem, FileNotFoundError, StatInfo
121 return FileNotFoundError.RaiseInFuture(
caching_file_system_test.py 12 from file_system import FileNotFoundError, StatInfo
177 self.assertRaises(FileNotFoundError, future.Get)
availability_finder.py 13 from file_system import FileNotFoundError
80 except FileNotFoundError:
content_provider.py 12 from file_system import FileNotFoundError
features_bundle.py 11 from file_system import FileNotFoundError
62 except FileNotFoundError:
  /external/chromium_org/chrome/test/ispy/
ispy_api_unittest.py 54 cloud_bucket.FileNotFoundError,
ispy_api.py 53 except cloud_bucket.FileNotFoundError:
  /external/chromium_org/chrome/test/ispy/server/
gs_bucket.py 48 raise cloud_bucket.FileNotFoundError
  /external/chromium_org/chrome/test/ispy/common/
ispy_utils_unittest.py 62 self.assertRaises(cloud_bucket.FileNotFoundError,
132 cloud_bucket.FileNotFoundError, self.ispy_utils.GetExpectation, 'test3')
188 self.assertRaises(cloud_bucket.FileNotFoundError,

Completed in 609 milliseconds

12