Searched refs:StorageResponseError (Results 1 – 6 of 6) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ |
D | exception.py | 290 class StorageResponseError(BotoServerError): class 296 super(StorageResponseError, self).__init__(status, reason, body) 299 return super(StorageResponseError, self).startElement( 306 return super(StorageResponseError, self).endElement( 310 super(StorageResponseError, self)._cleanupParsedProperties() 315 class S3ResponseError(StorageResponseError): 322 class GSResponseError(StorageResponseError):
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/ |
D | integration_testcase.py | 29 from boto.exception import StorageResponseError 121 @Retry(StorageResponseError, tries=7, timeout_secs=1) 129 except StorageResponseError, e: 146 except StorageResponseError, e: 242 @Retry(StorageResponseError, tries=7, timeout_secs=1)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/ |
D | keyfile.py | 30 from boto.exception import StorageResponseError 78 except StorageResponseError as e:
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/ |
D | mock_storage_service.py | 292 raise boto.exception.StorageResponseError(404, 'Not Found') 388 raise boto.exception.StorageResponseError( 394 raise boto.exception.StorageResponseError(404, 'NoSuchBucket',
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
D | boto_translation.py | 102 boto.exception.StorageResponseError) 1456 if isinstance(e, boto.exception.StorageResponseError):
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
D | test_cp.py | 36 from boto.exception import StorageResponseError 179 @Retry(StorageResponseError, tries=5, timeout_secs=1)
|