/third_party/node/deps/npm/node_modules/bluebird/js/release/ |
D | errors.js | 27 var TimeoutError = subError("TimeoutError", "timeout error"); variable 94 TimeoutError: TimeoutError, property 113 TimeoutError: errorTypes.TimeoutError, property
|
D | timers.js | 4 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/ |
D | farm.js | 17 , TimeoutError = require('errno').create('TimeoutError') constant 228 , args : [ new TimeoutError('worker call timed out!') ] 348 module.exports.TimeoutError = TimeoutError
|
/third_party/python/Doc/includes/ |
D | mp_pool.py | 132 except multiprocessing.TimeoutError: 145 except multiprocessing.TimeoutError:
|
/third_party/python/Doc/library/ |
D | asyncio-exceptions.rst | 14 .. exception:: TimeoutError 19 This exception is different from the builtin :exc:`TimeoutError`
|
D | asyncio-api-index.rst | 206 * - :exc:`asyncio.TimeoutError` 208 Keep in mind that ``asyncio.TimeoutError`` is **unrelated** 209 to the built-in :exc:`TimeoutError` exception.
|
D | concurrent.futures.rst | 50 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
|
D | asyncio-task.rst | 502 :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/ |
D | context.py | 20 class TimeoutError(ProcessError): class 34 TimeoutError = TimeoutError variable in BaseContext
|
D | pool.py | 29 from . import get_context, TimeoutError 767 raise TimeoutError 865 raise TimeoutError from None
|
/third_party/python/Lib/concurrent/futures/ |
D | _base.py | 53 class TimeoutError(Error): class 241 raise TimeoutError( 448 raise TimeoutError() 484 raise TimeoutError()
|
D | __init__.py | 12 TimeoutError,
|
/third_party/python/Lib/test/ |
D | test_concurrent_futures.py | 743 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,
|
D | exception_hierarchy.txt | 39 | +-- TimeoutError
|
D | test_timeout.py | 134 except TimeoutError as e: 207 except TimeoutError:
|
D | test_exception_hierarchy.py | 46 self.assertIs(socket.timeout, TimeoutError)
|
/third_party/python/Lib/asyncio/ |
D | exceptions.py | 13 class TimeoutError(Exception): class
|
D | futures.py | 319 elif exc_class is concurrent.futures.TimeoutError: 320 return exceptions.TimeoutError(*exc.args)
|
D | tasks.py | 420 raise exceptions.TimeoutError() from exc 458 raise exceptions.TimeoutError() from exc 570 raise exceptions.TimeoutError
|
D | staggered.py | 86 with contextlib.suppress(exceptions_mod.TimeoutError):
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_asyncio_waitfor.py | 51 except asyncio.TimeoutError:
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
D | Errors.h | 43 static Napi::Error TimeoutError(Napi::Env);
|
D | Errors.cpp | 127 Napi::Error Errors::TimeoutError(Napi::Env env) { in TimeoutError() function in wgpu::binding::Errors
|
/third_party/python/Lib/test/support/ |
D | socket_helper.py | 228 if (isinstance(err, TimeoutError) or
|
/third_party/node/deps/npm/node_modules/worker-farm/ |
D | README.md | 128 …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 …
|