Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for maxFactor (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    // Jitter returns a time.Duration between duration and duration + maxFactor *
    // duration.
    //
    // This allows clients to avoid converging on periodic behavior. If maxFactor
    // is 0.0, a suggested default value will be chosen.
    func Jitter(duration time.Duration, maxFactor float64) time.Duration {
    	if maxFactor <= 0.0 {
    		maxFactor = 1.0
    	}
    	wait := duration + time.Duration(rand.Float64()*maxFactor*float64(duration))
    	return wait
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top