Home
last modified time | relevance | path

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

/third_party/node/lib/internal/
Dtimers.js131 const TIMEOUT_MAX = 2 ** 31 - 1; constant
167 if (!(after >= 1 && after <= TIMEOUT_MAX)) {
168 if (after > TIMEOUT_MAX) {
390 if (msecs > TIMEOUT_MAX) {
392 `\nTimer duration was truncated to ${TIMEOUT_MAX}.`,
394 return TIMEOUT_MAX;
640 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/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
/third_party/node/doc/changelogs/
DCHANGELOG_V5.md1514 …ejs/node/commit/7fd8f1371e)] - **doc**: add note about timeout delay > TIMEOUT_MAX (Guilherme Souz…
DCHANGELOG_V4.md2828 …ejs/node/commit/a2efe4c72b)] - **doc**: add note about timeout delay > TIMEOUT_MAX (Guilherme Souz…