Searched refs:BatchError (Results 1 – 8 of 8) sorted by relevance
/external/python/apitools/apitools/base/py/ |
D | batch.py | 302 raise exceptions.BatchError( 305 raise exceptions.BatchError( 451 raise exceptions.BatchError(
|
D | exceptions.py | 92 class BatchError(Error): class
|
D | batch_test.py | 375 self.assertRaises(exceptions.BatchError, 510 exceptions.BatchError, batch_request._Execute, None)
|
/external/python/google-api-python-client/tests/ |
D | test_http.py | 44 from googleapiclient.errors import BatchError 1103 self.assertRaises(BatchError, batch._header_to_id, '[foo+x]') 1104 self.assertRaises(BatchError, batch._header_to_id, 'foo+1') 1105 self.assertRaises(BatchError, batch._header_to_id, '<foo>') 1208 self.assertRaises(BatchError, batch.add, self.request1) 1216 with self.assertRaises(BatchError) as batch_error: 1255 except BatchError as e: 1278 except BatchError as e:
|
/external/python/google-api-python-client/googleapiclient/ |
D | http.py | 61 from googleapiclient.errors import BatchError 1204 raise BatchError("Invalid value for Content-ID: %s" % header) 1206 raise BatchError("Invalid value for Content-ID: %s" % header) 1329 raise BatchError("Exceeded the maximum calls(%d) in a single batch request." 1334 raise BatchError("Media requests cannot be used in a batch request.") 1400 raise BatchError("Response not in multipart/mixed format.", resp=resp,
|
D | errors.py | 123 class BatchError(HttpError): class
|
/external/python/google-api-python-client/docs/epy/ |
D | api-objects.txt | 135 googleapiclient.errors.BatchError googleapiclient.errors.BatchError-class.html 136 googleapiclient.errors.BatchError.__str__ googleapiclient.errors.BatchError-class.html#__str__ 137 googleapiclient.errors.BatchError.__repr__ googleapiclient.errors.BatchError-class.html#__repr__ 138 googleapiclient.errors.BatchError.__init__ googleapiclient.errors.BatchError-class.html#__init__
|
/external/python/google-api-python-client/ |
D | CHANGELOG | 185 - Fix unprintable representation of BatchError with default constructor. (#165)
|