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.py13 FIRST_EXCEPTION = 'FIRST_EXCEPTION' variable
166 if return_when == FIRST_EXCEPTION:
296 elif (return_when == FIRST_EXCEPTION) and done:
/external/python/cpython3/Lib/asyncio/
Dtasks.py369 FIRST_EXCEPTION = concurrent.futures.FIRST_EXCEPTION variable
393 if return_when not in (FIRST_COMPLETED, FIRST_EXCEPTION, ALL_COMPLETED):
515 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.py595 return_when=futures.FIRST_EXCEPTION)
609 return_when=futures.FIRST_EXCEPTION)
621 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.rst459 | :const:`FIRST_EXCEPTION` | The function will return when any |
Dasyncio-task.rst536 | :const:`FIRST_EXCEPTION` | The function will return when any |
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py1423 asyncio.wait([b, a], return_when=asyncio.FIRST_EXCEPTION))
1453 task = asyncio.wait([b, a], return_when=asyncio.FIRST_EXCEPTION)