Home
last modified time | relevance | path

Searched refs:TimeoutError (Results 1 – 25 of 70) sorted by relevance

123

/third_party/node/deps/npm/node_modules/bluebird/js/release/
Derrors.js27 var TimeoutError = subError("TimeoutError", "timeout error"); variable
94 TimeoutError: TimeoutError, property
113 TimeoutError: errorTypes.TimeoutError, property
Dtimers.js4 var TimeoutError = Promise.TimeoutError;
46 err = new TimeoutError("operation timed out");
49 err = new TimeoutError(message);
/third_party/node/deps/npm/node_modules/worker-farm/lib/
Dfarm.js17 , TimeoutError = require('errno').create('TimeoutError') constant
228 , args : [ new TimeoutError('worker call timed out!') ]
348 module.exports.TimeoutError = TimeoutError
/third_party/python/Doc/includes/
Dmp_pool.py132 except multiprocessing.TimeoutError:
145 except multiprocessing.TimeoutError:
/third_party/python/Doc/library/
Dasyncio-exceptions.rst14 .. exception:: TimeoutError
19 This exception is different from the builtin :exc:`TimeoutError`
Dasyncio-api-index.rst206 * - :exc:`asyncio.TimeoutError`
208 Keep in mind that ``asyncio.TimeoutError`` is **unrelated**
209 to the built-in :exc:`TimeoutError` exception.
Dconcurrent.futures.rst50 The returned iterator raises a :exc:`concurrent.futures.TimeoutError`
346 :exc:`concurrent.futures.TimeoutError` will be raised. *timeout* can be
360 :exc:`concurrent.futures.TimeoutError` will be raised. *timeout* can be
477 raises a :exc:`concurrent.futures.TimeoutError` if :meth:`~iterator.__next__`
499 .. exception:: TimeoutError
Dasyncio-task.rst502 :exc:`asyncio.TimeoutError`.
532 except asyncio.TimeoutError:
544 :exc:`asyncio.TimeoutError` immediately.
573 Note that this function does not raise :exc:`asyncio.TimeoutError`.
661 Raises :exc:`asyncio.TimeoutError` if the timeout occurs before
774 except concurrent.futures.TimeoutError:
/third_party/python/Lib/multiprocessing/
Dcontext.py20 class TimeoutError(ProcessError): class
34 TimeoutError = TimeoutError variable in BaseContext
Dpool.py29 from . import get_context, TimeoutError
767 raise TimeoutError
865 raise TimeoutError from None
/third_party/python/Lib/concurrent/futures/
D_base.py53 class TimeoutError(Error): class
241 raise TimeoutError(
448 raise TimeoutError()
484 raise TimeoutError()
D__init__.py12 TimeoutError,
/third_party/python/Lib/test/
Dtest_concurrent_futures.py743 except futures.TimeoutError:
768 with self.assertRaises(futures.TimeoutError):
790 with self.assertRaises(futures.TimeoutError) as cm:
838 except futures.TimeoutError:
1162 except futures.TimeoutError:
1442 self.assertRaises(futures.TimeoutError,
1444 self.assertRaises(futures.TimeoutError,
1483 self.assertRaises(futures.TimeoutError,
1485 self.assertRaises(futures.TimeoutError,
Dexception_hierarchy.txt39 | +-- TimeoutError
Dtest_timeout.py134 except TimeoutError as e:
207 except TimeoutError:
Dtest_exception_hierarchy.py46 self.assertIs(socket.timeout, TimeoutError)
/third_party/python/Lib/asyncio/
Dexceptions.py13 class TimeoutError(Exception): class
Dfutures.py319 elif exc_class is concurrent.futures.TimeoutError:
320 return exceptions.TimeoutError(*exc.args)
Dtasks.py420 raise exceptions.TimeoutError() from exc
458 raise exceptions.TimeoutError() from exc
570 raise exceptions.TimeoutError
Dstaggered.py86 with contextlib.suppress(exceptions_mod.TimeoutError):
/third_party/python/Lib/test/test_asyncio/
Dtest_asyncio_waitfor.py51 except asyncio.TimeoutError:
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DErrors.h43 static Napi::Error TimeoutError(Napi::Env);
DErrors.cpp127 Napi::Error Errors::TimeoutError(Napi::Env env) { in TimeoutError() function in wgpu::binding::Errors
/third_party/python/Lib/test/support/
Dsocket_helper.py228 if (isinstance(err, TimeoutError) or
/third_party/node/deps/npm/node_modules/worker-farm/
DREADME.md128 …at worker will have their callbacks returned with a `TimeoutError` (check `err.type == 'TimeoutErr…
130 …llTime` and `maxConcurrentCallsPerWorkers` greater than `1` then any `TimeoutError` will increase …

123