Searched refs:TIMEOUT_MAX (Results 1 – 10 of 10) sorted by relevance
/third_party/node/lib/internal/ |
D | timers.js | 134 const TIMEOUT_MAX = 2 ** 31 - 1; constant 171 if (!(after >= 1 && after <= TIMEOUT_MAX)) { 172 if (after > TIMEOUT_MAX) { 400 if (msecs > TIMEOUT_MAX) { 402 `\nTimer duration was truncated to ${TIMEOUT_MAX}.`, 404 return TIMEOUT_MAX; 652 TIMEOUT_MAX, property
|
/third_party/node/test/parallel/ |
D | test-tls-wrap-timeout.js | 5 const { kTimeout, TIMEOUT_MAX } = require('internal/timers'); 36 const s = socket.setTimeout(TIMEOUT_MAX, function() {
|
/third_party/lwip/src/core/ |
D | lowpower.c | 58 #define TIMEOUT_MAX 120000 /* two mins */ macro 62 static u32_t g_wake_up_time = TIMEOUT_MAX; 273 u32_t msec = TIMEOUT_MAX; in get_sleep_time() 373 sys_timeout_set_wake_time(TIMEOUT_MAX); in tcpip_timeouts_mbox_fetch()
|
/third_party/node/lib/internal/watch_mode/ |
D | files_watcher.js | 13 const { TIMEOUT_MAX } = require('internal/timers'); 37 validateNumber(throttle, 'options.throttle', 0, TIMEOUT_MAX);
|
/third_party/node/lib/internal/cluster/ |
D | child.js | 18 const { TIMEOUT_MAX } = require('internal/timers'); 170 fakeHandle = setInterval(noop, TIMEOUT_MAX);
|
/third_party/node/lib/internal/test_runner/ |
D | test.js | 55 const { TIMEOUT_MAX } = require('internal/timers'); 245 validateNumber(timeout, 'options.timeout', 0, TIMEOUT_MAX);
|
/third_party/python/Lib/test/ |
D | lock_tests.py | 9 from _thread import start_new_thread, TIMEOUT_MAX 197 self.assertRaises(OverflowError, lock.acquire, timeout=TIMEOUT_MAX + 1) 199 lock.acquire(timeout=TIMEOUT_MAX)
|
/third_party/python/Lib/ |
D | threading.py | 49 TIMEOUT_MAX = _thread.TIMEOUT_MAX variable
|
/third_party/python/Doc/library/ |
D | _thread.rst | 146 .. data:: TIMEOUT_MAX
|
D | threading.rst | 200 .. data:: TIMEOUT_MAX
|