Home
last modified time | relevance | path

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

/third_party/node/deps/npm/node_modules/agent-base/
Dindex.js96 const timeoutMs = this.timeout;
111 'A "socket" was not created for HTTP request before ' + timeoutMs + 'ms'
156 if (timeoutMs > 0) {
157 timeout = setTimeout(ontimeout, timeoutMs);
/third_party/node/deps/npm/node_modules/socks-proxy-agent/node_modules/agent-base/
Dindex.js96 const timeoutMs = this.timeout;
111 'A "socket" was not created for HTTP request before ' + timeoutMs + 'ms'
156 if (timeoutMs > 0) {
157 timeout = setTimeout(ontimeout, timeoutMs);
/third_party/node/test/common/
Dinspector-helper.js495 function timeoutPromise(error, timeoutMs) { argument
499 const timeout = setTimeout(() => reject(error), timeoutMs);
514 function fires(promise, error, timeoutMs) { argument
515 const timeout = timeoutPromise(error, timeoutMs);
/third_party/flatbuffers/grpc/tests/
DJavaGrpcTest.java46 static final int timeoutMs = 3000; field in JavaGrpcTest
196 streamAlive.await(timeoutMs, TimeUnit.MILLISECONDS);
232 streamAlive.await(timeoutMs, TimeUnit.MILLISECONDS);
/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()