Home
last modified time | relevance | path

Searched refs:TIMEOUT_MAX (Results 1 - 7 of 7) sorted by relevance

/third_party/node/lib/internal/
H A Dtimers.js133 // Timeout values > TIMEOUT_MAX are set to 1.
134 const TIMEOUT_MAX = 2 ** 31 - 1;
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,
/third_party/node/test/parallel/
H A 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/
H A 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/cluster/
H A Dchild.js18 const { TIMEOUT_MAX } = require('internal/timers');
170 fakeHandle = setInterval(noop, TIMEOUT_MAX);
/third_party/python/Lib/test/
H A Dlock_tests.py9 from _thread import start_new_thread, TIMEOUT_MAX namespace
197 self.assertRaises(OverflowError, lock.acquire, timeout=TIMEOUT_MAX + 1)
198 # TIMEOUT_MAX is ok
199 lock.acquire(timeout=TIMEOUT_MAX)
/third_party/node/lib/internal/test_runner/
H A Dtest.js59 const { TIMEOUT_MAX } = require('internal/timers');
284 validateNumber(timeout, 'options.timeout', 0, TIMEOUT_MAX);
/third_party/python/Lib/
H A Dthreading.py27 'enumerate', 'main_thread', 'TIMEOUT_MAX',
49 TIMEOUT_MAX = _thread.TIMEOUT_MAX variable

Completed in 7 milliseconds