Home
last modified time | relevance | path

Searched refs:adjustedTimeout (Results 1 – 7 of 7) sorted by relevance

/dports/databases/hbase/hbase-1.2.1/hbase-common/src/test/java/org/apache/hadoop/hbase/
H A DWaiter.java181 long adjustedTimeout = (long) (getWaitForRatio(conf) * timeout); in waitFor() local
182 long mustEnd = started + adjustedTimeout; in waitFor()
190 adjustedTimeout, getWaitForRatio(conf))); in waitFor()
210 .format("Waiting timed out after [{0}] msec", adjustedTimeout) + msg); in waitFor()
214 MessageFormat.format("Waiting timed out after [{0}] msec", adjustedTimeout) + msg); in waitFor()
/dports/www/firefox-esr/firefox-91.8.0/dom/webauthn/
H A DWebAuthnManager.cpp282 uint32_t adjustedTimeout = 30000; in MakeCredential() local
284 adjustedTimeout = aOptions.mTimeout.Value(); in MakeCredential()
285 adjustedTimeout = std::max(15000u, adjustedTimeout); in MakeCredential()
286 adjustedTimeout = std::min(120000u, adjustedTimeout); in MakeCredential()
427 adjustedTimeout, excludeList, Some(extra), context->Top()->Id()); in MakeCredential()
495 uint32_t adjustedTimeout = 30000; in GetAssertion() local
497 adjustedTimeout = aOptions.mTimeout.Value(); in GetAssertion()
498 adjustedTimeout = std::max(15000u, adjustedTimeout); in GetAssertion()
499 adjustedTimeout = std::min(120000u, adjustedTimeout); in GetAssertion()
632 clientDataJSON, adjustedTimeout, allowList, in GetAssertion()
/dports/lang/spidermonkey78/firefox-78.9.0/dom/webauthn/
H A DWebAuthnManager.cpp276 uint32_t adjustedTimeout = 30000; in MakeCredential() local
278 adjustedTimeout = aOptions.mTimeout.Value(); in MakeCredential()
279 adjustedTimeout = std::max(15000u, adjustedTimeout); in MakeCredential()
280 adjustedTimeout = std::min(120000u, adjustedTimeout); in MakeCredential()
421 challenge, clientDataJSON, adjustedTimeout, in MakeCredential()
490 uint32_t adjustedTimeout = 30000; in GetAssertion() local
492 adjustedTimeout = aOptions.mTimeout.Value(); in GetAssertion()
493 adjustedTimeout = std::max(15000u, adjustedTimeout); in GetAssertion()
494 adjustedTimeout = std::min(120000u, adjustedTimeout); in GetAssertion()
628 clientDataJSON, adjustedTimeout, allowList, in GetAssertion()
/dports/www/firefox/firefox-99.0/dom/webauthn/
H A DWebAuthnManager.cpp280 uint32_t adjustedTimeout = 30000; in MakeCredential() local
282 adjustedTimeout = aOptions.mTimeout.Value(); in MakeCredential()
283 adjustedTimeout = std::max(15000u, adjustedTimeout); in MakeCredential()
284 adjustedTimeout = std::min(120000u, adjustedTimeout); in MakeCredential()
425 adjustedTimeout, excludeList, Some(extra), context->Top()->Id()); in MakeCredential()
493 uint32_t adjustedTimeout = 30000; in GetAssertion() local
495 adjustedTimeout = aOptions.mTimeout.Value(); in GetAssertion()
496 adjustedTimeout = std::max(15000u, adjustedTimeout); in GetAssertion()
497 adjustedTimeout = std::min(120000u, adjustedTimeout); in GetAssertion()
630 clientDataJSON, adjustedTimeout, allowList, in GetAssertion()
/dports/mail/thunderbird/thunderbird-91.8.0/dom/webauthn/
H A DWebAuthnManager.cpp282 uint32_t adjustedTimeout = 30000; in MakeCredential() local
284 adjustedTimeout = aOptions.mTimeout.Value(); in MakeCredential()
285 adjustedTimeout = std::max(15000u, adjustedTimeout); in MakeCredential()
286 adjustedTimeout = std::min(120000u, adjustedTimeout); in MakeCredential()
427 adjustedTimeout, excludeList, Some(extra), context->Top()->Id()); in MakeCredential()
495 uint32_t adjustedTimeout = 30000; in GetAssertion() local
497 adjustedTimeout = aOptions.mTimeout.Value(); in GetAssertion()
498 adjustedTimeout = std::max(15000u, adjustedTimeout); in GetAssertion()
499 adjustedTimeout = std::min(120000u, adjustedTimeout); in GetAssertion()
632 clientDataJSON, adjustedTimeout, allowList, in GetAssertion()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/webauthn/
H A DWebAuthnManager.cpp252 uint32_t adjustedTimeout = 30000; in MakeCredential() local
254 adjustedTimeout = aOptions.mTimeout.Value(); in MakeCredential()
255 adjustedTimeout = std::max(15000u, adjustedTimeout); in MakeCredential()
256 adjustedTimeout = std::min(120000u, adjustedTimeout); in MakeCredential()
421 adjustedTimeout, excludeList, extensions, in MakeCredential()
476 uint32_t adjustedTimeout = 30000; in GetAssertion() local
478 adjustedTimeout = aOptions.mTimeout.Value(); in GetAssertion()
479 adjustedTimeout = std::max(15000u, adjustedTimeout); in GetAssertion()
480 adjustedTimeout = std::min(120000u, adjustedTimeout); in GetAssertion()
622 adjustedTimeout, allowList, in GetAssertion()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/executor/
H A Dnetwork_interface_asio.cpp377 const auto adjustedTimeout = timeout - getConnectionDuration; in startCommand() local
382 op->_owner->_timerFactory->make(&op->_strand, adjustedTimeout); in startCommand()
397 [this, op, access, generation, requestId, adjustedTimeout](std::error_code ec) { in startCommand()
409 << adjustedTimeout << ", op was " << redact(op->toString()); in startCommand()