Searched refs:BatchError (Results 1 – 8 of 8) sorted by relevance
/external/python/apitools/apitools/base/py/ |
D | batch.py | 310 raise exceptions.BatchError( 313 raise exceptions.BatchError( 465 raise exceptions.BatchError(
|
D | exceptions.py | 130 class BatchError(Error): class
|
D | batch_test.py | 375 self.assertRaises(exceptions.BatchError, 528 exceptions.BatchError, batch_request._Execute, None)
|
/external/python/google-api-python-client/googleapiclient/ |
D | http.py | 61 from googleapiclient.errors import BatchError 1262 raise BatchError("Invalid value for Content-ID: %s" % header) 1264 raise BatchError("Invalid value for Content-ID: %s" % header) 1389 raise BatchError( 1396 raise BatchError("Media requests cannot be used in a batch request.") 1464 raise BatchError(
|
D | errors.py | 144 class BatchError(HttpError): class
|
/external/python/google-api-python-client/tests/ |
D | test_http.py | 45 from googleapiclient.errors import BatchError 1129 self.assertRaises(BatchError, batch._header_to_id, "[foo+x]") 1130 self.assertRaises(BatchError, batch._header_to_id, "foo+1") 1131 self.assertRaises(BatchError, batch._header_to_id, "<foo>") 1240 self.assertRaises(BatchError, batch.add, self.request1) 1247 with self.assertRaises(BatchError) as batch_error: 1298 except BatchError as e: 1327 except BatchError as e:
|
/external/python/google-api-python-client/docs/epy/ |
D | api-objects.txt | 156 googleapiclient.errors.BatchError googleapiclient.errors.BatchError-class.html 157 googleapiclient.errors.BatchError.__str__ googleapiclient.errors.BatchError-class.html#__str__ 158 googleapiclient.errors.BatchError.__repr__ googleapiclient.errors.BatchError-class.html#__repr__ 159 googleapiclient.errors.BatchError.__init__ googleapiclient.errors.BatchError-class.html#__init__
|
/external/python/google-api-python-client/ |
D | CHANGELOG | 256 - Fix unprintable representation of BatchError with default constructor. (#165)
|