/third_party/python/Lib/asyncio/ |
D | __main__.py | 39 future.set_exception(ex) 42 future.set_exception(ex) 53 future.set_exception(exc)
|
D | tasks.py | 144 def set_exception(self, exception): member in Task 247 super().set_exception(exc) 250 super().set_exception(exc) 730 outer.set_exception(exc) 735 outer.set_exception(exc) 765 outer.set_exception(exc) 845 outer.set_exception(exc) 875 future.set_exception(exc)
|
D | windows_events.py | 87 def set_exception(self, exception): member in _OverlappedFuture 88 super().set_exception(exception) 161 def set_exception(self, exception): member in _BaseWaitHandleFuture 163 super().set_exception(exception) 188 def set_exception(self, exception): member in _WaitCancelFuture 189 super().set_exception(exception) 745 f.set_exception(e) 819 f.set_exception(e)
|
D | streams.py | 167 waiter.set_exception(exc) 253 reader.set_exception(exc) 258 self._closed.set_exception(exc) 422 def set_exception(self, exc): member in StreamReader 429 waiter.set_exception(exc)
|
D | futures.py | 263 def set_exception(self, exception): member in Future 336 concurrent.set_exception(_convert_future_exc(exception)) 356 dest.set_exception(_convert_future_exc(exception))
|
D | selector_events.py | 391 fut.set_exception(exc) 429 fut.set_exception(exc) 476 fut.set_exception(exc) 521 fut.set_exception(exc) 544 fut.set_exception(exc) 576 fut.set_exception(exc) 953 self._empty_waiter.set_exception(exc) 980 self._empty_waiter.set_exception(
|
D | subprocess.py | 83 self._stdin_closed.set_exception(exc) 95 reader.set_exception(exc)
|
D | base_subprocess.py | 189 waiter.set_exception(exc)
|
D | unix_events.py | 410 fut.set_exception(err) 413 fut.set_exception(exc) 418 fut.set_exception(exc)
|
D | base_events.py | 237 self._write_ready_fut.set_exception( 240 self._write_ready_fut.set_exception(exc) 573 self.call_soon_threadsafe(future.set_exception, ex)
|
D | sslproto.py | 466 self._waiter.set_exception(exc)
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_futures.py | 71 def set_exception(self, exception): member in DuckFuture 185 fut.set_exception(Exception) 250 self.assertRaises(asyncio.InvalidStateError, f.set_exception, None) 263 self.assertRaises(asyncio.InvalidStateError, f.set_exception, None) 273 f.set_exception, StopIteration) 275 f.set_exception(exc) 281 self.assertRaises(asyncio.InvalidStateError, f.set_exception, None) 286 f.set_exception(RuntimeError) 333 f_exception.set_exception(exc) 388 f_exception.set_exception(RuntimeError()) [all …]
|
D | test_streams.py | 208 stream.set_exception(ValueError()) 377 stream.set_exception(ValueError()) 532 stream.set_exception(ValueError()) 541 stream.set_exception(exc) 548 stream.set_exception(ValueError()) 565 stream.set_exception(RuntimeError('message')) 868 stream.set_exception(exc)
|
D | test_buffered_proto.py | 27 self.con_lost_fut.set_exception(exc)
|
D | test_tasks.py | 1875 task.set_exception(ValueError()) 2146 inner.set_exception(exc) 2950 Future.set_exception(task, MyExc()) 3317 b.set_exception(exc) 3325 e.set_exception(RuntimeError()) 3337 c.set_exception(exc) 3341 d.set_exception(exc2) 3447 e.set_exception(RuntimeError()) 3458 b.set_exception(zde) 3465 f.set_exception(rte)
|
/third_party/python/Lib/concurrent/futures/ |
D | thread.py | 60 self.future.set_exception(exc) 214 work_item.future.set_exception(BrokenThreadPool(self._broken))
|
D | process.py | 178 work_item.future.set_exception(e) 416 work_item.future.set_exception(result_item.exception) 455 work_item.future.set_exception(bpe)
|
D | _base.py | 542 def set_exception(self, exception): member in Future
|
/third_party/python/Doc/library/ |
D | asyncio-future.rst | 116 :meth:`set_exception` method, this method raises the exception. 131 .. method:: set_exception(exception) 144 :meth:`set_exception` calls.
|
D | asyncio-dev.rst | 199 If a :meth:`Future.set_exception` is called but the Future object is
|
D | concurrent.futures.rst | 403 :meth:`Future.set_result` or :meth:`Future.set_exception` have been 419 .. method:: set_exception(exception)
|
/third_party/python/Lib/unittest/ |
D | async_case.py | 108 fut.set_exception(ex)
|
/third_party/node/deps/v8/src/objects/ |
D | module.cc | 98 module->set_exception(*error); in RecordError() 101 module->set_exception(*isolate->factory()->null_value()); in RecordError()
|
/third_party/python/Lib/test/ |
D | test_concurrent_futures.py | 1289 f.set_exception(Exception('test')) 1343 f.set_exception(Exception('test')) 1528 f.set_exception(e) 1535 f.set_exception(Exception())
|
/third_party/node/deps/v8/src/heap/ |
D | setup-heap-internal.cc | 308 set_exception(roots.null_value()); in CreateInitialMaps() 739 set_exception(*factory->NewOddball(factory->exception_map(), "exception", in CreateInitialObjects()
|