Searched refs:HttpError (Results 1 – 10 of 10) sorted by relevance
/tools/acloud/internal/lib/ |
D | base_cloud_client.py | 118 if isinstance(exception, errors.HttpError): 126 list(other_retriable_errors) + [errors.HttpError], 144 if isinstance(exception, gerrors.HttpError): 145 exception = errors.HttpError.CreateFromHttpError(exception) 166 except gerrors.HttpError as e:
|
D | base_cloud_client_test.py | 100 error_1 = errors.HttpError(503, "fake retriable error.") 142 error = errors.HttpError(503, "fake retriable error.") 144 self.assertRaises(errors.HttpError, client.Execute, api_mock)
|
D | android_build_client.py | 110 except (OSError, apiclient.errors.HttpError) as e: 296 except errors.HttpError as e: 302 raise errors.HttpError(e.code, message=error_msg)
|
D | android_build_client_test.py | 124 mock_api_request.execute.side_effect = errors.HttpError(503, 127 errors.HttpError,
|
D | gcompute_client_test.py | 1443 raise errors.HttpError(412, "resource labels have changed") 1454 error = errors.HttpError(503, "fake retriable error.") 1459 with self.assertRaises(errors.HttpError): 1463 error = errors.HttpError(403, "fake retriable error.")
|
D | android_compute_client.py | 359 except errors.HttpError as e:
|
D | gcompute_client.py | 108 return isinstance(exc, errors.HttpError) and exc.code == 412 1668 except errors.HttpError as e:
|
D | utils.py | 575 if (isinstance(exception, errors.HttpError)
|
/tools/acloud/ |
D | errors.py | 39 class HttpError(DriverError): class 60 return HttpError(http_error.resp.status, str(http_error)) 63 class ResourceNotFoundError(HttpError):
|
/tools/treble/fetcher/ |
D | fetcher_lib.py | 83 except http_client.errors.HttpError as e:
|