Home
last modified time | relevance | path

Searched refs:maximumAttempts (Results 1 – 3 of 3) sorted by relevance

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/client/
H A Dremote_command_retry_scheduler.cpp50 RetryPolicyImpl(std::size_t maximumAttempts,
64 RetryPolicyImpl::RetryPolicyImpl(std::size_t maximumAttempts, in RetryPolicyImpl() argument
67 : _maximumAttempts(maximumAttempts), in RetryPolicyImpl()
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/master/
H A DAssignmentManager.java166 private final int maximumAttempts; field in AssignmentManager
305 this.maximumAttempts = Math.max(1, in AssignmentManager()
1839 for (int i = 1; i <= this.maximumAttempts; i++) { in unassign()
1943 + " of " + this.maximumAttempts, t); in unassign()
2070 for (int i = 1; i <= maximumAttempts; i++) { in assign()
2090 if (i == maximumAttempts) { in assign()
2159 "try=" + i + " of " + this.maximumAttempts); in assign()
2191 "try=" + i + " of " + this.maximumAttempts, t); in assign()
2234 if (i == this.maximumAttempts) { in assign()
3191 for (int i = 1; i <= maximumAttempts; i++) { in retrySendRegionOpen()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/lib/tether/
H A Dtether.go688 func retryOnError(cmd func() error, maximumAttempts int) error {
689 for i := 0; i < maximumAttempts-1; i++ {