Home
last modified time | relevance | path

Searched refs:retryCount (Results 1 – 25 of 1318) sorted by relevance

12345678910>>...53

/dports/security/keybase/client-v5.7.1/go/systests/
H A Dstellar_client_test.go9 const retryCount = 5 const
22 for i := 0; i < retryCount; i++ {
32 for i := 0; i < retryCount; i++ {
42 for i := 0; i < retryCount; i++ {
52 for i := 0; i < retryCount; i++ {
62 for i := 0; i < retryCount; i++ {
72 for i := 0; i < retryCount; i++ {
82 for i := 0; i < retryCount; i++ {
92 for i := 0; i < retryCount; i++ {
102 for i := 0; i < retryCount; i++ {
[all …]
/dports/devel/coursier/coursier-1.1.0-M12/modules/coursier/jvm/src/main/contraband-scala/coursier/params/
H A DCacheParams.scala13 val retryCount: Int, constant
20 …allel == x.parallel) && (this.checksum == x.checksum) && (this.retryCount == x.retryCount) && (thi…
24 …tion.##) + cachePolicies.##) + ttl.##) + parallel.##) + checksum.##) + retryCount.##) + cacheLocal…
27 …achePolicies + ", " + ttl + ", " + parallel + ", " + checksum + ", " + retryCount + ", " + cacheLo…
29 …el: Int = parallel, checksum: Seq[Option[String]] = checksum, retryCount: Int = retryCount, cacheL…
30 …new CacheParams(cacheLocation, cachePolicies, ttl, parallel, checksum, retryCount, cacheLocalArtif…
50 def withRetryCount(retryCount: Int): CacheParams = {
51 copy(retryCount = retryCount)
63retryCount: Int, cacheLocalArtifacts: Boolean, followHttpToHttpsRedirections: Boolean): CacheParam…
64retryCount: Int, cacheLocalArtifacts: Boolean, followHttpToHttpsRedirections: Boolean): CacheParam…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Runtime/
H A DDbRetry.cs32 internal bool TryDoRetry(ref short retryCount) in TryDoRetry() argument
34 if (CanRetry(retryCount++)) in TryDoRetry()
36 RetrySleep(retryCount); in TryDoRetry()
43 internal bool CanRetry(short retryCount) in CanRetry() argument
48 if (retryCount < _maxRetries) in CanRetry()
54 internal void RetrySleep(short retryCount) in RetrySleep() argument
59 if (retryCount <= _spinCount) in RetrySleep()
62 int sleep = _retrySleep * retryCount; in RetrySleep()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.Composition/tests/System/UnitTesting/
H A DCompositionAssert.cs43 … ExceptionAssert.Throws<ComposablePartException>(retry, action, (thrownException, retryCount) => in ThrowsPart()
45 AssertCore(retryCount, "ComposablePartException", thrownException, expectation); in ThrowsPart()
122 … ExceptionAssert.Throws<ChangeRejectedException>(retry, action, (thrownException, retryCount) => in ThrowsChangeRejectedErrors()
124 AssertCore(retryCount, "CompositionException", thrownException, expectations); in ThrowsChangeRejectedErrors()
130 … ExceptionAssert.Throws<CompositionException>(retry, action, (thrownException, retryCount) => in ThrowsErrors()
132 AssertCore(retryCount, "CompositionException", thrownException, expectations); in ThrowsErrors()
142 … AssertCore(retryCount, prefix + ".Errors[" + i + "]", exception.Errors[i], expectations[i]); in AssertCore()
150 AssertCore(retryCount, prefix, "Element", expectation.Element, error.Element); in AssertCore()
155 …AssertCore(retryCount, prefix, "InnerException", expectation.InnerException, error.InnerException); in AssertCore()
182 AssertCore(retryCount, prefix, "Id", expectation.Id, (ErrorId)error.Id); in AssertCore()
[all …]
H A DExceptionAssert.cs37 … var exception = Throws<ObjectDisposedException>(RetryMode.Retry, action, (actual, retryCount) => in ThrowsDisposed()
39 AssertObjectDisposed(instance, actual, retryCount); in ThrowsDisposed()
52 var exception = (T)Run(retry, action, (actual, retryCount) =>
54 AssertIsExactInstanceOf(typeof(T), actual, retryCount);
58 validator((T)actual, retryCount);
90 Run(retry, action, (actual, retryCount) => in Throws()
96 validator(actual, retryCount); in Throws()
128 …e static void AssertObjectDisposed(object instance, ObjectDisposedException actual, int retryCount) in AssertObjectDisposed() argument
135 … private static void AssertIsExactInstanceOf(Type expectedType, Exception actual, int retryCount) in AssertIsExactInstanceOf() argument
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/test/java/org/apache/hadoop/yarn/server/nodemanager/containermanager/
H A DTestNMProxy.java56 int retryCount = 0; field in TestNMProxy
74 if (retryCount < 5) { in createContainerManager()
75 retryCount++; in createContainerManager()
92 if (retryCount < 5) { in createContainerManager()
93 retryCount++; in createContainerManager()
103 if (retryCount < 5) { in createContainerManager()
104 retryCount++; in createContainerManager()
138 retryCount = 0;
143 retryCount = 0;
148 retryCount = 0;
[all …]
/dports/java/apache-commons-httpclient/commons-httpclient-3.1/src/java/org/apache/commons/httpclient/
H A DDefaultMethodRetryHandler.java45 private int retryCount; field in DefaultMethodRetryHandler
53 this.retryCount = 3; in DefaultMethodRetryHandler()
70 return ((!requestSent || requestSentRetryEnabled) && (executionCount <= retryCount)); in retryMethod()
84 return retryCount; in getRetryCount()
98 public void setRetryCount(int retryCount) { in setRetryCount() argument
99 this.retryCount = retryCount; in setRetryCount()
H A DDefaultHttpMethodRetryHandler.java56 private int retryCount; field in DefaultHttpMethodRetryHandler
66 public DefaultHttpMethodRetryHandler(int retryCount, boolean requestSentRetryEnabled) { in DefaultHttpMethodRetryHandler() argument
68 this.retryCount = retryCount; in DefaultHttpMethodRetryHandler()
101 if (executionCount > this.retryCount) { in retryMethod()
146 return retryCount; in getRetryCount()
/dports/audio/ampache/ampache-php74-5.0.0/vendor/sabre/http/lib/
H A DClient.php133 $this->emit('error', [$request, $response, &$retry, $retryCount]);
134 $this->emit('error:' . $code, [$request, $response, &$retry, $retryCount]);
140 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
152 $retryCount++;
229 $retryCount,
238 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
241 $retryCount++;
254 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
259 $retryCount++;
544 * @param int $retryCount
[all …]
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/includes/sabre/sabre/http/lib/
H A DClient.php133 $this->emit('error', [$request, $response, &$retry, $retryCount]);
134 $this->emit('error:' . $code, [$request, $response, &$retry, $retryCount]);
140 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
152 $retryCount++;
229 $retryCount,
238 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
241 $retryCount++;
254 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
259 $retryCount++;
544 * @param int $retryCount
[all …]
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/includes/sabre/sabre/http/lib/
H A DClient.php133 $this->emit('error', [$request, $response, &$retry, $retryCount]);
134 $this->emit('error:' . $code, [$request, $response, &$retry, $retryCount]);
140 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
152 $retryCount++;
229 $retryCount,
238 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
241 $retryCount++;
254 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
259 $retryCount++;
544 * @param int $retryCount
[all …]
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/sabre/http/lib/
H A DClient.php133 $this->emit('error', [$request, $response, &$retry, $retryCount]);
134 $this->emit('error:' . $code, [$request, $response, &$retry, $retryCount]);
140 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
152 $retryCount++;
229 $retryCount,
238 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
241 $retryCount++;
254 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
259 $retryCount++;
544 * @param int $retryCount
[all …]
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/sabre/http/lib/
H A DClient.php133 $this->emit('error', [$request, $response, &$retry, $retryCount]);
134 $this->emit('error:' . $code, [$request, $response, &$retry, $retryCount]);
140 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
152 $retryCount++;
229 $retryCount,
238 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
241 $retryCount++;
254 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
259 $retryCount++;
544 * @param int $retryCount
[all …]
/dports/security/lego/lego-4.5.3/vendor/github.com/go-resty/resty/v2/
H A Dretry_test.go163 retryCount := 5
171 SetRetryCount(retryCount).
206 retryCount := 5
214 SetRetryCount(retryCount).
249 retryCount := 5
261 SetRetryCount(retryCount).
289 retryCount := 5
337 retryCount := 5
385 retryCount := 5
433 retryCount := 5
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/go-resty/resty/v2/
H A Dretry_test.go163 retryCount := 5
171 SetRetryCount(retryCount).
206 retryCount := 5
214 SetRetryCount(retryCount).
249 retryCount := 5
261 SetRetryCount(retryCount).
289 retryCount := 5
337 retryCount := 5
385 retryCount := 5
433 retryCount := 5
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/aws/aws-sdk-go/aws/client/
H A Ddefault_retryer.go41 retryCount := r.RetryCount
42 if retryCount > 13 {
43 retryCount = 13
44 } else if throttle && retryCount > 8 {
45 retryCount = 8
48 delay := (1 << uint(retryCount)) * (rand.Intn(30) + minTime)
/dports/www/owncloud/owncloud/lib/composer/sabre/http/lib/
H A DClient.php141 $this->emit('error', [$request, $response, &$retry, $retryCount]);
142 $this->emit('error:'.$code, [$request, $response, &$retry, $retryCount]);
145 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
156 ++$retryCount;
221 $retryCount) = $this->curlMultiMap[$resourceId];
230 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
233 ++$retryCount;
234 … $this->sendAsyncInternal($request, $successCallback, $errorCallback, $retryCount);
244 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
248 ++$retryCount;
[all …]
/dports/www/baikal/baikal/vendor/sabre/http/lib/
H A DClient.php141 $this->emit('error', [$request, $response, &$retry, $retryCount]);
142 $this->emit('error:'.$code, [$request, $response, &$retry, $retryCount]);
145 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
156 ++$retryCount;
221 $retryCount) = $this->curlMultiMap[$resourceId];
230 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
233 ++$retryCount;
234 … $this->sendAsyncInternal($request, $successCallback, $errorCallback, $retryCount);
244 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
248 ++$retryCount;
[all …]
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/sabre/http/lib/
H A DClient.php141 $this->emit('error', [$request, $response, &$retry, $retryCount]);
142 $this->emit('error:'.$code, [$request, $response, &$retry, $retryCount]);
145 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
156 ++$retryCount;
221 $retryCount) = $this->curlMultiMap[$resourceId];
230 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
233 ++$retryCount;
234 … $this->sendAsyncInternal($request, $successCallback, $errorCallback, $retryCount);
244 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
248 ++$retryCount;
[all …]
/dports/www/nextcloud/nextcloud/3rdparty/sabre/http/lib/
H A DClient.php141 $this->emit('error', [$request, $response, &$retry, $retryCount]);
142 $this->emit('error:'.$code, [$request, $response, &$retry, $retryCount]);
145 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
156 ++$retryCount;
221 $retryCount) = $this->curlMultiMap[$resourceId];
230 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
233 ++$retryCount;
234 … $this->sendAsyncInternal($request, $successCallback, $errorCallback, $retryCount);
244 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
248 ++$retryCount;
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/client/
H A DDefaultHttpRequestRetryHandler.java61 private final int retryCount; field in DefaultHttpRequestRetryHandler
77 final int retryCount, in DefaultHttpRequestRetryHandler() argument
81 this.retryCount = retryCount; in DefaultHttpRequestRetryHandler()
102 …public DefaultHttpRequestRetryHandler(final int retryCount, final boolean requestSentRetryEnabled)… in DefaultHttpRequestRetryHandler() argument
103 this(retryCount, requestSentRetryEnabled, Arrays.asList( in DefaultHttpRequestRetryHandler()
133 if (executionCount > this.retryCount) { in retryRequest()
179 return retryCount; in getRetryCount()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/client/
H A DDefaultHttpRequestRetryHandler.java61 private final int retryCount; field in DefaultHttpRequestRetryHandler
77 final int retryCount, in DefaultHttpRequestRetryHandler() argument
81 this.retryCount = retryCount; in DefaultHttpRequestRetryHandler()
102 …public DefaultHttpRequestRetryHandler(final int retryCount, final boolean requestSentRetryEnabled)… in DefaultHttpRequestRetryHandler() argument
103 this(retryCount, requestSentRetryEnabled, Arrays.asList( in DefaultHttpRequestRetryHandler()
133 if (executionCount > this.retryCount) { in retryRequest()
179 return retryCount; in getRetryCount()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/lang/management/ThreadMXBean/
H A DUtils.java36 int retryCount=0; in waitForBlockWaitingState() local
37 while (t.getState() == Thread.State.RUNNABLE && retryCount < MAX_RETRY) { in waitForBlockWaitingState()
39 retryCount++; in waitForBlockWaitingState()
46 int retryCount=0; in waitForThreadState() local
47 while (t.getState() != expected && retryCount < MAX_RETRY) { in waitForThreadState()
49 retryCount++; in waitForThreadState()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/lang/management/ThreadMXBean/
H A DUtils.java36 int retryCount=0; in waitForBlockWaitingState() local
37 while (t.getState() == Thread.State.RUNNABLE && retryCount < MAX_RETRY) { in waitForBlockWaitingState()
39 retryCount++; in waitForBlockWaitingState()
46 int retryCount=0; in waitForThreadState() local
47 while (t.getState() != expected && retryCount < MAX_RETRY) { in waitForThreadState()
49 retryCount++; in waitForThreadState()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/lang/management/ThreadMXBean/
H A DUtils.java36 int retryCount=0; in waitForBlockWaitingState() local
37 while (t.getState() == Thread.State.RUNNABLE && retryCount < MAX_RETRY) { in waitForBlockWaitingState()
39 retryCount++; in waitForBlockWaitingState()
46 int retryCount=0; in waitForThreadState() local
47 while (t.getState() != expected && retryCount < MAX_RETRY) { in waitForThreadState()
49 retryCount++; in waitForThreadState()

12345678910>>...53