Home
last modified time | relevance | path

Searched refs:FIRST_EXCEPTION (Results 1 – 11 of 11) sorted by relevance

/external/python/futures/concurrent/futures/
D__init__.py9 FIRST_EXCEPTION,
D_base.py14 FIRST_EXCEPTION = 'FIRST_EXCEPTION' variable
163 if return_when == FIRST_EXCEPTION:
297 elif (return_when == FIRST_EXCEPTION) and done:
/external/python/cpython3/Lib/concurrent/futures/
D__init__.py9 FIRST_EXCEPTION,
D_base.py12 FIRST_EXCEPTION = 'FIRST_EXCEPTION' variable
161 if return_when == FIRST_EXCEPTION:
291 elif (return_when == FIRST_EXCEPTION) and done:
/external/python/cpython3/Lib/asyncio/
Dtasks.py331 FIRST_EXCEPTION = concurrent.futures.FIRST_EXCEPTION variable
355 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
445 return_when == FIRST_EXCEPTION and (not f.cancelled() and
/external/python/futures/
Dtest_futures.py328 return_when=futures.FIRST_EXCEPTION)
342 return_when=futures.FIRST_EXCEPTION)
354 return_when=futures.FIRST_EXCEPTION)
/external/python/cpython3/Lib/test/
Dtest_concurrent_futures.py475 return_when=futures.FIRST_EXCEPTION)
489 return_when=futures.FIRST_EXCEPTION)
501 return_when=futures.FIRST_EXCEPTION)
/external/python/futures/docs/
Dindex.rst326 | :const:`FIRST_EXCEPTION` | The function will return when any |
/external/python/cpython3/Doc/library/
Dconcurrent.futures.rst418 | :const:`FIRST_EXCEPTION` | The function will return when any |
Dasyncio-task.rst507 | :const:`FIRST_EXCEPTION` | The function will return when any |
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py1044 asyncio.wait([b, a], return_when=asyncio.FIRST_EXCEPTION,
1075 task = asyncio.wait([b, a], return_when=asyncio.FIRST_EXCEPTION,