Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WithMax (0.08 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/limitrangeitem.go

    	b.Type = &value
    	return b
    }
    
    // WithMax sets the Max field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Max field is set to the value of the last call.
    func (b *LimitRangeItemApplyConfiguration) WithMax(value v1.ResourceList) *LimitRangeItemApplyConfiguration {
    	b.Max = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. pkg/security/retry.go

    // CARetryOptions returns the default retry options recommended for CA calls
    // This includes 5 retries, with backoff from 100ms -> 1.6s with jitter.
    var CARetryOptions = []retry.CallOption{
    	retry.WithMax(5),
    	retry.WithBackoff(wrapBackoffWithMetrics(retry.BackoffExponentialWithJitter(100*time.Millisecond, 0.1))),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top