Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for PollImmediateInfiniteWithContext (1.35 sec)

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

    func PollImmediateInfinite(interval time.Duration, condition ConditionFunc) error {
    	return PollImmediateInfiniteWithContext(context.Background(), interval, condition.WithContext())
    }
    
    // PollImmediateInfiniteWithContext tries a condition func until it returns true
    // or an error or the specified context gets cancelled or expired.
    //
    // PollImmediateInfiniteWithContext runs the 'condition' before waiting for the interval.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top