Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewExponentialBackoffError (0.2 sec)

  1. pkg/util/goroutinemap/exponentialbackoff/exponential_backoff.go

    		operationName,
    		expBackoff.lastErrorTime.Add(expBackoff.durationBeforeRetry),
    		expBackoff.durationBeforeRetry,
    		expBackoff.lastError)
    }
    
    // NewExponentialBackoffError returns a new instance of ExponentialBackoff error.
    func NewExponentialBackoffError(
    	operationName string, expBackoff ExponentialBackoff) error {
    	return exponentialBackoffError{
    		operationName: operationName,
    		expBackoff:    expBackoff,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 19 03:30:46 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top