/external/python/python-api-core/google/api_core/future/ |
D | polling.py | 95 self._exception = None 258 if self._exception is not None: 261 raise self._exception 283 return self._exception 321 self._exception = exception
|
/external/python/cpython3/Lib/asyncio/ |
D | futures.py | 52 _exception = None variable in Future 96 exc = self._exception 198 if self._exception is not None: 199 raise self._exception.with_traceback(self._exception_tb) 215 return self._exception 277 self._exception = exception
|
D | streams.py | 431 self._exception = None 448 if self._exception: 457 return self._exception 460 self._exception = exc 612 if self._exception is not None: 613 raise self._exception 710 if self._exception is not None: 711 raise self._exception 757 if self._exception is not None: 758 raise self._exception
|
D | base_tasks.py | 57 elif task._exception is not None: 58 tb = task._exception.__traceback__ 83 exc = task._exception
|
D | base_futures.py | 49 if future._exception is not None:
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | _base.py | 333 self._exception = None 347 if self._exception: 352 self._exception.__class__.__name__) 399 if self._exception: 401 raise self._exception 485 return self._exception 492 return self._exception 560 self._exception = exception
|
/external/pytorch/torch/onnx/_internal/diagnostics/infra/sarif/ |
D | _exception.py | 10 _exception, 20 inner_exceptions: Optional[List[_exception.Exception]] = dataclasses.field(
|
D | _notification.py | 10 _exception, 33 exception: Optional[_exception.Exception] = dataclasses.field(
|
D | __init__.py | 21 from torch.onnx._internal.diagnostics.infra.sarif._exception import Exception
|
/external/autotest/client/cros/ |
D | dhcp_test_server.py | 113 self._exception = None 225 self._exception = None 234 if self._exception: 235 raise self._exception 355 self._exception = e
|
/external/python/cpython3/Lib/xml/sax/ |
D | _exceptions.py | 19 self._exception = exception 28 return self._exception
|
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/ |
D | _metadata_code_details_test.py | 74 self._exception = False 90 if self._exception: 109 if self._exception: 127 if self._exception: 149 if self._exception: 166 self._exception = True
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | data_utils.py | 363 self._exception = None 373 if self._exception: 374 raise self._exception # pylint: disable=raising-bad-type 379 self._exception = e
|
/external/grpc-grpc/src/python/grpcio/grpc/ |
D | _interceptor.py | 132 _exception: Exception 137 self._exception = exception 171 raise self._exception 176 return self._exception 193 raise self._exception
|
/external/protobuf/python/ |
D | mox.py | 542 self._exception = None 570 if expected_method._exception: 571 raise expected_method._exception 736 self._exception = exception
|
/external/cronet/stable/third_party/protobuf/python/ |
D | mox.py | 542 self._exception = None 570 if expected_method._exception: 571 raise expected_method._exception 736 self._exception = exception
|
/external/cronet/tot/third_party/protobuf/python/ |
D | mox.py | 542 self._exception = None 570 if expected_method._exception: 571 raise expected_method._exception 736 self._exception = exception
|
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/_channel/ |
D | _invocation.py | 170 def _exception(unused_handler): function 205 return _exception(self._handler)
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | timeout_retry.py | 115 def AlwaysRetry(_exception): argument
|
/external/python/cpython3/Lib/test/test_concurrent_futures/ |
D | util.py | 18 f._exception = exception
|
D | test_future.py | 247 f1._exception = OSError()
|
/external/python/cpython3/Lib/unittest/ |
D | loader.py | 26 self._exception = exception 33 raise self._exception
|
/external/python/cpython3/Lib/test/support/ |
D | asyncore.py | 103 def _exception(obj): function 168 _exception(obj)
|
/external/tensorflow/tensorflow/python/framework/ |
D | test_util.py | 2770 self._exception = None 2779 self._exception = e 2798 if self._exception is not None: 2799 self._testcase.fail("Error in checkedThread: %s" % str(self._exception))
|
/external/pytorch/test/ |
D | test_dataloader.py | 648 self._exception = None 680 self._exception = self._pconn.recv() 681 if self._exception is None: 684 return self._exception.exc_type(self._exception.exc_msg)
|