Home
last modified time | relevance | path

Searched refs:timeoutMs (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/npm/node_modules/agent-base/dist/src/
Dindex.js113 const timeoutMs = opts.timeout || this.timeout;
125 … const err = new Error(`A "socket" was not created for HTTP request before ${timeoutMs}ms`);
176 if (typeof timeoutMs === 'number' && timeoutMs > 0) {
177 timeoutId = setTimeout(ontimeout, timeoutMs);
/third_party/node/test/fixtures/wpt/dom/events/scrolling/
Dscroll_support.js1 async function waitForScrollendEvent(test, target, timeoutMs = 500) { argument
5 }, timeoutMs);
/third_party/node/test/common/
Dinspector-helper.js505 function timeoutPromise(error, timeoutMs) { argument
509 const timeout = setTimeout(() => reject(error), timeoutMs);
524 function fires(promise, error, timeoutMs) { argument
525 const timeout = timeoutPromise(error, timeoutMs);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DSyncVk.cpp35 int timeoutMs = static_cast<int>(timeoutNs / 1000000); in SyncWaitFd() local
39 timeoutMs = 1; in SyncWaitFd()
49 ret = poll(&fds, 1, timeoutMs); in SyncWaitFd()