/external/python/cpython3/Lib/asyncio/ |
D | tasks.py | 211 if not isinstance(exc, futures.CancelledError): 212 exc = futures.CancelledError() 230 super().set_exception(futures.CancelledError()) 233 except futures.CancelledError: 410 except futures.CancelledError: 679 exc = futures.CancelledError() 698 res = futures.CancelledError() 709 outer.set_exception(futures.CancelledError())
|
D | futures.py | 18 CancelledError = base_futures.CancelledError variable 173 raise CancelledError 190 raise CancelledError
|
D | base_futures.py | 9 CancelledError = concurrent.futures.CancelledError variable
|
D | locks.py | 195 except futures.CancelledError: 366 except futures.CancelledError: 370 raise futures.CancelledError
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.errors.-cancelled-error.pbtxt | 1 path: "tensorflow.errors.CancelledError" 3 is_instance: "<class \'tensorflow.python.framework.errors_impl.CancelledError\'>"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.errors.-cancelled-error.pbtxt | 1 path: "tensorflow.errors.CancelledError" 3 is_instance: "<class \'tensorflow.python.framework.errors_impl.CancelledError\'>"
|
/external/python/cpython3/Doc/library/ |
D | asyncio-exceptions.rst | 20 .. exception:: CancelledError 37 # suppresses the CancelledError exception. 44 except asyncio.CancelledError:
|
D | asyncio-task.rst | 326 treated as if it raised :exc:`CancelledError` -- the ``gather()`` 394 still raises a :exc:`CancelledError`. 405 except CancelledError: 664 will cause the Task to throw a :exc:`CancelledError` exception into 670 suppress the :exc:`CancelledError` exception and was actually 688 This arranges for a :exc:`CancelledError` exception to be thrown 693 ... ``except CancelledError`` ... :keyword:`finally` block. 710 except asyncio.CancelledError: 726 except asyncio.CancelledError: 744 :exc:`CancelledError` exception thrown into it. [all …]
|
D | asyncio-api-index.rst | 208 * - :exc:`asyncio.CancelledError` 214 * :ref:`Handling CancelledError to run code on cancellation request
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | _base.py | 48 class CancelledError(Error): class 423 raise CancelledError() 430 raise CancelledError() 456 raise CancelledError() 463 raise CancelledError()
|
D | __init__.py | 11 CancelledError,
|
/external/python/futures/concurrent/futures/ |
D | _base.py | 50 class CancelledError(Error): class 453 raise CancelledError() 460 raise CancelledError() 486 raise CancelledError() 493 raise CancelledError()
|
D | __init__.py | 11 CancelledError,
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 302 self.assertRaises(asyncio.CancelledError, 447 with self.assertRaises(asyncio.CancelledError): 464 asyncio.CancelledError, self.loop.run_until_complete, t) 479 with self.assertRaises(asyncio.CancelledError): 497 with self.assertRaises(asyncio.CancelledError): 512 except asyncio.CancelledError: 536 except asyncio.CancelledError: 570 asyncio.CancelledError, loop.run_until_complete, t) 588 asyncio.CancelledError, loop.run_until_complete, t) 622 with self.assertRaises(asyncio.CancelledError): [all …]
|
D | test_runners.py | 124 except asyncio.CancelledError: 162 except asyncio.CancelledError:
|
D | test_server.py | 53 with self.assertRaises(asyncio.CancelledError): 106 with self.assertRaises(asyncio.CancelledError):
|
D | test_queues.py | 371 except asyncio.CancelledError: 402 except asyncio.CancelledError: 431 except asyncio.CancelledError: 542 with self.assertRaises(asyncio.CancelledError): 570 with self.assertRaises(asyncio.CancelledError):
|
D | test_windows_events.py | 107 with self.assertRaises(asyncio.CancelledError): 153 with self.assertRaises(asyncio.CancelledError):
|
D | test_subprocess.py | 346 except asyncio.CancelledError: 368 except asyncio.CancelledError: 386 except asyncio.CancelledError:
|
/external/tensorflow/tensorflow/python/framework/ |
D | errors_impl.py | 205 class CancelledError(OpError): class 221 super(CancelledError, self).__init__(node_def, op, message, CANCELLED) 483 CANCELLED: CancelledError,
|
/external/grpc-grpc/src/python/grpcio/grpc/framework/foundation/ |
D | future.py | 43 class CancelledError(Exception): class
|
/external/python/futures/ |
D | test_futures.py | 700 self.assertRaises(futures.CancelledError, 702 self.assertRaises(futures.CancelledError, 731 self.assertRaises(futures.CancelledError, f1.result, timeout=5) 738 self.assertRaises(futures.CancelledError, 740 self.assertRaises(futures.CancelledError,
|
/external/tensorflow/tensorflow/contrib/training/python/training/ |
D | bucket_ops.py | 274 errors.CancelledError))) 285 errors.CancelledError)))
|
/external/tensorflow/tensorflow/python/tpu/ |
D | error_handling.py | 31 _UNINTERESTING_ERRORS = (errors.CancelledError,)
|
/external/grpc-grpc/src/python/grpcio/grpc/beta/ |
D | utilities.py | 44 raise future.CancelledError()
|