Home
last modified time | relevance | path

Searched refs:cancel_futures (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/concurrent/futures/
Dthread.py216 def shutdown(self, wait=True, *, cancel_futures=False): argument
219 if cancel_futures:
Dprocess.py739 def shutdown(self, wait=True, *, cancel_futures=False): argument
741 self._cancel_pending_futures = cancel_futures
D_base.py617 def shutdown(self, wait=True, *, cancel_futures=False): argument
/third_party/python/Doc/library/
Dconcurrent.futures.rst70 .. method:: shutdown(wait=True, *, cancel_futures=False)
85 If *cancel_futures* is ``True``, this method will cancel all pending
88 of *cancel_futures*.
90 If both *cancel_futures* and *wait* are ``True``, all futures that the
107 Added *cancel_futures*.
/third_party/python/Misc/NEWS.d/
D3.9.0a4.rst558 Added a new *cancel_futures* parameter to
/third_party/python/Lib/test/
Dtest_concurrent_futures.py364 executor.shutdown(cancel_futures=True)
/third_party/python/Doc/whatsnew/
D3.9.rst392 Added a new *cancel_futures* parameter to