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

1 2

  /external/chromium_org/chrome/common/extensions/docs/server2/
offline_file_system.py 5 from file_system import FileSystem, FileNotFoundError
19 raise FileNotFoundError('File system is offline, cannot read %s' % paths)
23 raise FileNotFoundError('File system is offline, cannot read %s' % path)
empty_dir_file_system.py 5 from file_system import FileNotFoundError, FileSystem, StatInfo
19 raise FileNotFoundError('EmptyDirFileSystem cannot read %s' % path)
28 raise FileNotFoundError('EmptyDirFileSystem cannot stat %s' % path)
api_models_test.py 13 from file_system import FileNotFoundError
106 self.assertRaises(FileNotFoundError,
108 self.assertRaises(FileNotFoundError,
111 self.assertRaises(FileNotFoundError,
114 self.assertRaises(FileNotFoundError,
116 self.assertRaises(FileNotFoundError,
118 self.assertRaises(FileNotFoundError,
121 self.assertRaises(FileNotFoundError,
124 self.assertRaises(FileNotFoundError,
126 self.assertRaises(FileNotFoundError,
    [all...]
test_file_system_test.py 7 from file_system import FileNotFoundError, StatInfo
41 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['404.html/'])
42 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo/'])
43 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo.html'])
44 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo.html'])
45 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo/',
47 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['apps/foo/',
51 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['foo'])
52 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['bar/'])
53 self.assertRaises(FileNotFoundError, _Get(fs.Read), ['bar/baz']
    [all...]
link_error_detector_test.py 8 from file_system import FileNotFoundError
57 except FileNotFoundError:
patched_file_system_test.py 9 from file_system import FileNotFoundError, StatInfo
96 self.assertRaises(FileNotFoundError,
98 self.assertRaises(FileNotFoundError,
100 self.assertRaises(FileNotFoundError,
102 self.assertRaises(FileNotFoundError,
105 FileNotFoundError,
133 self.assertRaises(FileNotFoundError,
174 self.assertRaises(FileNotFoundError, self._file_system.Stat,
176 self.assertRaises(FileNotFoundError, self._file_system.Stat,
192 self.assertRaises(FileNotFoundError, self._file_system.Stat
    [all...]
patched_file_system.py 7 from file_system import FileSystem, StatInfo, FileNotFoundError
23 raise FileNotFoundError('Files are removed from the patch.')
37 raise FileNotFoundError('Directory %s not found in the patch.' % path)
56 and handle FileNotFoundError.
64 except FileNotFoundError:
130 except FileNotFoundError:
150 raise FileNotFoundError('%s was not in child versions' % filename)
directory_zipper_test.py 12 from file_system import FileNotFoundError
50 self.assertRaises(FileNotFoundError,
host_file_system_provider_test.py 10 from file_system import FileNotFoundError
44 # Offline file system should raise a FileNotFoundError if read is attempted.
45 self.assertRaises(FileNotFoundError, fs.ReadSingle(self._idle_path).Get)
table_of_contents_renderer.py 6 from file_system import FileNotFoundError
31 except FileNotFoundError:
local_file_system.py 9 from file_system import FileSystem, FileNotFoundError, StatInfo
28 raise FileNotFoundError('Read failed for %s: %s' % (filename, e))
36 raise FileNotFoundError('os.listdir failed for %s: %s' % (dir_name, e))
64 raise FileNotFoundError('os.stat failed for %s: %s' % (path, e))
93 except FileNotFoundError:
subversion_file_system.py 14 FileNotFoundError, FileSystem, FileSystemError, StatInfo)
148 exc_type = (FileNotFoundError if IsDownloadError(e)
154 raise FileNotFoundError(
181 exc_type = FileNotFoundError if IsDownloadError(e) else FileSystemError
186 raise FileNotFoundError('Got 404 when fetching %s for Stat, '
189 raise FileNotFoundError('Got %s when fetching %s for Stat, content %s' %
198 raise FileNotFoundError(
redirector.py 8 from file_system import FileNotFoundError
43 except FileNotFoundError:
71 except FileNotFoundError:
gcs_file_system.py 10 from file_system import FileSystem, FileNotFoundError, StatInfo
36 raise FileNotFoundError('Read failed for %s: %s' % (filename,
49 raise FileNotFoundError('cloudstorage.listbucket failed for %s: %s' %
64 raise FileNotFoundError('cloudstorage.stat failed for %s: %s' % (path,
render_servlet.py 12 from file_system import FileNotFoundError
58 except FileNotFoundError:
74 except FileNotFoundError: continue
80 |server_instance|. If |path| isn't found then a FileNotFoundError will be
test_patcher.py 32 raise FileNotFoundError('One of %s is deleted in the patch.' % paths)
rietveld_patcher_test.py 15 from file_system import FileNotFoundError
76 # self.assertRaises(FileNotFoundError, self._ApplySingle,
80 self.assertRaises(FileNotFoundError, self._ApplySingle, 'not_existing')
template_data_source.py 13 from file_system import FileNotFoundError
33 except FileNotFoundError:
compiled_file_system_test.py 12 from file_system import FileNotFoundError
146 self.assertRaises(FileNotFoundError,
151 self.assertRaises(FileNotFoundError,
153 # TODO(kalman): likewise, not a FileNotFoundError.
154 self.assertRaises(FileNotFoundError,
221 self.assertRaises(FileNotFoundError, future.Get)
file_system.py 29 class FileNotFoundError(_BaseFileSystemException):
91 - Otherwise, and by default, a FileNotFoundError is raised. This is
101 rules as Read(). If |path| is not found raise a FileNotFoundError on Get(),
110 False if not. This method will not throw a FileNotFoundError unlike
123 if isinstance(error, FileNotFoundError):
143 If the path cannot be found, raises a FileNotFoundError.
190 If |root| cannot be found, raises a FileNotFoundError.
chained_compiled_file_system.py 7 from file_system import FileNotFoundError
86 except FileNotFoundError:
  /external/chromium_org/chrome/test/ispy/common/
mock_cloud_bucket.py 38 raise cloud_bucket.FileNotFoundError
43 raise cloud_bucket.FileNotFoundError
60 raise cloud_bucket.FileNotFoundError
cloud_bucket.py 8 class FileNotFoundError(Exception):
  /external/chromium_org/chrome/test/ispy/server/
image_handler.py 34 except cloud_bucket.FileNotFoundError:
  /external/chromium_org/chrome/test/ispy/client/
boto_bucket.py 56 raise cloud_bucket.FileNotFoundError
64 raise cloud_bucket.FileNotFoundError
84 raise cloud_bucket.FileNotFoundError(path)

Completed in 392 milliseconds

1 2