Home
last modified time | relevance | path

Searched refs:maxRetries (Results 1 – 25 of 1190) sorted by relevance

12345678910>>...48

/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/retry/
H A DRetryPolicies.java158 maxRetries, delayMillis, maxDelayBase); in failoverOnNetworkException()
186 final int maxRetries; field in RetryPolicies.RetryLimited
193 if (maxRetries < 0) { in RetryLimited()
200 this.maxRetries = maxRetries; in RetryLimited()
208 if (retries >= maxRetries) { in shouldRetry()
244 super(maxRetries, sleepTime, timeUnit); in RetryUpToMaximumCountWithFixedSleep()
261 super(maxRetries, sleepTime, timeUnit); in RetryUpToMaximumCountWithProportionalSleep()
491 super(maxRetries, sleepTime, timeUnit); in ExponentialBackoffRetry()
493 if (maxRetries < 0) { in ExponentialBackoffRetry()
526 private int maxRetries; field in RetryPolicies.FailoverOnNetworkExceptionRetry
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/core/org/apache/hadoop/io/retry/
H A DRetryPolicies.java111 int maxRetries, long sleepTime, TimeUnit timeUnit) { in exponentialBackoffRetry() argument
163 final int maxRetries; field in RetryPolicies.RetryLimited
170 if (maxRetries < 0) { in RetryLimited()
177 this.maxRetries = maxRetries; in RetryLimited()
184 if (retries >= maxRetries) { in shouldRetry()
224 super(maxRetries, sleepTime, timeUnit); in RetryUpToMaximumCountWithFixedSleep()
241 super(maxRetries, sleepTime, timeUnit); in RetryUpToMaximumCountWithProportionalSleep()
466 int maxRetries, long sleepTime, TimeUnit timeUnit) { in ExponentialBackoffRetry() argument
467 super(maxRetries, sleepTime, timeUnit); in ExponentialBackoffRetry()
469 if (maxRetries < 0) { in ExponentialBackoffRetry()
[all …]
/dports/databases/db18/db-18.1.40/lang/java/src/com/sleepycat/collections/
H A DTransactionRunner.java79 private int maxRetries; field in TransactionRunner
110 int maxRetries, in TransactionRunner() argument
114 this.maxRetries = maxRetries; in TransactionRunner()
126 return maxRetries; in getMaxRetries()
136 public void setMaxRetries(int maxRetries) { in setMaxRetries() argument
138 this.maxRetries = maxRetries; in setMaxRetries()
231 int useMaxRetries = maxRetries; in run()
334 int maxRetries) in handleException() argument
338 return maxRetries; in handleException()
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/collections/
H A DTransactionRunner.java79 private int maxRetries; field in TransactionRunner
110 int maxRetries, in TransactionRunner() argument
114 this.maxRetries = maxRetries; in TransactionRunner()
124 return maxRetries; in getMaxRetries()
132 public void setMaxRetries(int maxRetries) { in setMaxRetries() argument
134 this.maxRetries = maxRetries; in setMaxRetries()
221 int useMaxRetries = maxRetries; in run()
324 int maxRetries) in handleException() argument
328 return maxRetries; in handleException()
/dports/databases/db5/db-5.3.28/lang/java/src/com/sleepycat/collections/
H A DTransactionRunner.java79 private int maxRetries; field in TransactionRunner
110 int maxRetries, in TransactionRunner() argument
114 this.maxRetries = maxRetries; in TransactionRunner()
124 return maxRetries; in getMaxRetries()
132 public void setMaxRetries(int maxRetries) { in setMaxRetries() argument
134 this.maxRetries = maxRetries; in setMaxRetries()
221 int useMaxRetries = maxRetries; in run()
324 int maxRetries) in handleException() argument
328 return maxRetries; in handleException()
/dports/devel/folly/folly-2021.12.27.00/folly/experimental/coro/
H A DRetry.h148 uint32_t maxRetries, in ExponentialBackoffWithJitter() argument
216 uint32_t maxRetries, in retryWithExponentialBackoff() argument
230 maxRetries, in retryWithExponentialBackoff()
240 uint32_t maxRetries, in retryWithExponentialBackoff() argument
248 maxRetries, in retryWithExponentialBackoff()
260 uint32_t maxRetries, in retryWithExponentialBackoff() argument
267 maxRetries, in retryWithExponentialBackoff()
278 uint32_t maxRetries, in retryWithExponentialBackoff() argument
284 maxRetries, in retryWithExponentialBackoff()
294 uint32_t maxRetries, in retryWithExponentialBackoff() argument
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/fzaninotto/faker/src/Faker/
H A DUniqueGenerator.php12 protected $maxRetries; variable in Faker\\UniqueGenerator
17 * @param integer $maxRetries
19 public function __construct(Generator $generator, $maxRetries = 10000) argument
22 $this->maxRetries = $maxRetries;
50 if ($i > $this->maxRetries) {
51 …eption(sprintf('Maximum retries of %d reached without finding a unique value', $this->maxRetries));
H A DValidGenerator.php13 protected $maxRetries; variable in Faker\\ValidGenerator
18 * @param integer $maxRetries
20 public function __construct(Generator $generator, $validator = null, $maxRetries = 10000) argument
31 $this->maxRetries = $maxRetries;
58 if ($i > $this->maxRetries) {
59 …ception(sprintf('Maximum retries of %d reached without finding a valid value', $this->maxRetries));
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@reduxjs/toolkit/src/query/
H A Dretry.ts17 async function defaultBackoff(attempt: number = 0, maxRetries: number = 5) {
18 const attempts = Math.min(attempt, maxRetries)
30 maxRetries?: number property
34 backoff?: (attempt: number, maxRetries: number) => Promise<void>
49 maxRetries: 5,
66 if (e.throwImmediately || retry > options.maxRetries) {
74 await options.backoff(retry, options.maxRetries)
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/k8s.io/client-go/rest/
H A Dwith_retry_test.go38 maxRetries int
48 maxRetries: 2,
58 maxRetries: 0,
72 maxRetries: 3,
94 maxRetries: 3,
116 maxRetries: 3,
137 maxRetries: 1,
154 maxRetries: 1,
176 maxRetries: 3,
208 r := &withRetry{maxRetries: test.maxRetries}
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/client-go/rest/
H A Dwith_retry_test.go38 maxRetries int
48 maxRetries: 2,
58 maxRetries: 0,
72 maxRetries: 3,
94 maxRetries: 3,
116 maxRetries: 3,
137 maxRetries: 1,
154 maxRetries: 1,
176 maxRetries: 3,
208 r := &withRetry{maxRetries: test.maxRetries}
/dports/www/grafana8/grafana-8.3.6/vendor/k8s.io/client-go/rest/
H A Dwith_retry_test.go38 maxRetries int
48 maxRetries: 2,
58 maxRetries: 0,
72 maxRetries: 3,
94 maxRetries: 3,
116 maxRetries: 3,
137 maxRetries: 1,
154 maxRetries: 1,
176 maxRetries: 3,
208 r := &withRetry{maxRetries: test.maxRetries}
/dports/security/nextcloud-twofactor_webauthn/twofactor_webauthn/vendor/web-auth/metadata-service/src/
H A DAbstractDescriptor.php24 private $maxRetries; variable in Webauthn\\MetadataService\\AbstractDescriptor
31 public function __construct(?int $maxRetries = null, ?int $blockSlowdown = null) argument
33 …Assertion::greaterOrEqualThan($maxRetries, 0, Utils::logicException('Invalid data. The value of "m…
36 $this->maxRetries = $maxRetries;
42 return $this->maxRetries;
/dports/www/nextcloud/nextcloud/3rdparty/web-auth/metadata-service/src/
H A DAbstractDescriptor.php24 private $maxRetries; variable in Webauthn\\MetadataService\\AbstractDescriptor
31 public function __construct(?int $maxRetries = null, ?int $blockSlowdown = null) argument
33 …Assertion::greaterOrEqualThan($maxRetries, 0, Utils::logicException('Invalid data. The value of "m…
36 $this->maxRetries = $maxRetries;
42 return $this->maxRetries;
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/lestrrat-go/backoff/v2/
H A Dcontroller.go13 maxRetries int member
24 maxRetries := 10
28 maxRetries = option.Value().(int)
36 maxRetries: maxRetries,
69 if c.maxRetries > 0 {
83 if c.maxRetries > 0 && c.retries >= c.maxRetries {
/dports/ftp/sftpgo/sftpgo-2.2.0/vendor/github.com/lestrrat-go/backoff/v2/
H A Dcontroller.go13 maxRetries int member
24 maxRetries := 10
28 maxRetries = option.Value().(int)
36 maxRetries: maxRetries,
69 if c.maxRetries > 0 {
83 if c.maxRetries > 0 && c.retries >= c.maxRetries {
/dports/devel/libgit2/libgit2-1.3.0/tests/resources/userdiff/after/
H A Dfile.php12 protected $maxRetries; variable in Faker\\UniqueGenerator
16 public function __construct(Generator $generator, $maxRetries) argument
19 $this->maxRetries = $maxRetries + 1;
42 if ($i >= $this->maxRetries) {
43 …eption(sprintf('Maximum retries of %d reached without finding a unique value', $this->maxRetries));
/dports/devel/libgit2/libgit2-1.3.0/tests/resources/userdiff/before/
H A Dfile.php12 protected $maxRetries; variable in Faker\\UniqueGenerator
15 public function __construct(Generator $generator, $maxRetries) argument
18 $this->maxRetries = $maxRetries;
41 if ($i > $this->maxRetries) {
42 …eption(sprintf('Maximum retries of %d reached without finding a unique value', $this->maxRetries));
/dports/devel/libgit2/libgit2-1.3.0/tests/resources/userdiff/files/
H A Dfile.php12 protected $maxRetries; variable in Faker\\UniqueGenerator
16 public function __construct(Generator $generator, $maxRetries) argument
19 $this->maxRetries = $maxRetries + 1;
42 if ($i >= $this->maxRetries) {
43 …eption(sprintf('Maximum retries of %d reached without finding a unique value', $this->maxRetries));
/dports/www/gitea/gitea-1.16.5/vendor/github.com/couchbase/go-couchbase/
H A Dddocs.go105 maxRetries := len(b.Nodes())
107 if maxRetries == 0 {
111 if maxRetries > ABS_MAX_RETRIES {
112 maxRetries = ABS_MAX_RETRIES
113 } else if maxRetries < ABS_MIN_RETRIES {
114 maxRetries = ABS_MIN_RETRIES
117 return maxRetries, nil
125 maxRetries, err := b.getMaxRetries()
132 for retryCount := 0; retryCount < maxRetries; retryCount++ {
186 maxRetries, err := b.getMaxRetries()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/client/
H A DDefaultServiceUnavailableRetryStrategy.java51 private final int maxRetries; field in DefaultServiceUnavailableRetryStrategy
59 public DefaultServiceUnavailableRetryStrategy(final int maxRetries, final int retryInterval) { in DefaultServiceUnavailableRetryStrategy() argument
61 Args.positive(maxRetries, "Max retries"); in DefaultServiceUnavailableRetryStrategy()
63 this.maxRetries = maxRetries; in DefaultServiceUnavailableRetryStrategy()
72 return executionCount <= maxRetries && in retryRequest()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/thirdparty/ch/boye/httpclientandroidlib/impl/client/
H A DDefaultServiceUnavailableRetryStrategy.java51 private final int maxRetries; field in DefaultServiceUnavailableRetryStrategy
59 public DefaultServiceUnavailableRetryStrategy(final int maxRetries, final int retryInterval) { in DefaultServiceUnavailableRetryStrategy() argument
61 Args.positive(maxRetries, "Max retries"); in DefaultServiceUnavailableRetryStrategy()
63 this.maxRetries = maxRetries; in DefaultServiceUnavailableRetryStrategy()
72 return executionCount <= maxRetries && in retryRequest()
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Compute/
H A DCircuitBreakers.php24 public $maxRetries; variable in Google_Service_Compute_CircuitBreakers
58 public function setMaxRetries($maxRetries) argument
60 $this->maxRetries = $maxRetries;
64 return $this->maxRetries;
/dports/sysutils/istio/istio-1.6.7/security/pkg/caclient/
H A Dclient_test.go40 maxRetries int
52 maxRetries: 0,
65 maxRetries: 0,
74 maxRetries: 0,
83 maxRetries: 2,
93 maxRetries: 1,
103 maxRetries: 1,
112 client, err := NewCAClient(c.pltfmc, fake, c.maxRetries, c.interval)
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@reduxjs/toolkit/src/query/tests/
H A Dretry.test.ts51 const baseQuery = retry(baseBaseQuery, { maxRetries: 3 })
76 const baseQuery = retry(baseBaseQuery, { maxRetries: 3 })
85 extraOptions: { maxRetries: 8 },
116 const baseQuery = retry(baseBaseQuery, { maxRetries: 10 })
141 const baseQuery = retry(baseBaseQuery, { maxRetries: 3 })
170 const baseQuery = retry(baseBaseQuery, { maxRetries: 3 })
195 const baseQuery = retry(baseBaseQuery, { maxRetries: 3 })
269 maxRetries: 3,
297 maxRetries: 8,
298 backoff: async (attempt, maxRetries) => {
[all …]

12345678910>>...48