Home
last modified time | relevance | path

Searched refs:TIMEOUT_MAX (Results 1 – 10 of 10) sorted by relevance

/third_party/node/lib/internal/
Dtimers.js134 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/
Dtest-tls-wrap-timeout.js5 const { kTimeout, TIMEOUT_MAX } = require('internal/timers');
36 const s = socket.setTimeout(TIMEOUT_MAX, function() {
/third_party/lwip/src/core/
Dlowpower.c58 #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/
Dfiles_watcher.js13 const { TIMEOUT_MAX } = require('internal/timers');
37 validateNumber(throttle, 'options.throttle', 0, TIMEOUT_MAX);
/third_party/node/lib/internal/cluster/
Dchild.js18 const { TIMEOUT_MAX } = require('internal/timers');
170 fakeHandle = setInterval(noop, TIMEOUT_MAX);
/third_party/node/lib/internal/test_runner/
Dtest.js55 const { TIMEOUT_MAX } = require('internal/timers');
245 validateNumber(timeout, 'options.timeout', 0, TIMEOUT_MAX);
/third_party/python/Lib/test/
Dlock_tests.py9 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/
Dthreading.py49 TIMEOUT_MAX = _thread.TIMEOUT_MAX variable
/third_party/python/Doc/library/
D_thread.rst146 .. data:: TIMEOUT_MAX
Dthreading.rst200 .. data:: TIMEOUT_MAX