Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 226 for Backoff (0.16 sec)

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

    // whether the context has been cancelled.
    func PollUntilContextCancel(ctx context.Context, interval time.Duration, immediate bool, condition ConditionWithContextFunc) error {
    	return loopConditionUntilContext(ctx, Backoff{Duration: interval}.Timer(), immediate, false, condition)
    }
    
    // PollUntilContextTimeout will terminate polling after timeout duration by setting a context
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    					lastReportedActionCount = currentActionCount
    				}
    				// The test expected more to happen, wait for the actions.
    				// Most probably it's exponential backoff
    				time.Sleep(10 * time.Millisecond)
    				continue
    			}
    			break
    		}
    		actions := client.Actions()
    
    		if !reflect.DeepEqual(actions, test.expectedActions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. pkg/util/goroutinemap/goroutinemap.go

    )
    
    // GoRoutineMap defines a type that can run named goroutines and track their
    // state.  It prevents the creation of multiple goroutines with the same name
    // and may prevent recreation of a goroutine until after the a backoff time
    // has elapsed after the last goroutine with that name finished.
    type GoRoutineMap interface {
    	// Run adds operation name to the list of running operations and spawns a
    	// new go routine to execute the operation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  4. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

              # clusters, then set request = limit to keep this container in
              # guaranteed class. Currently, this container falls into the
              # "burstable" category so the kubelet doesn't backoff from restarting it.
              limits:
                memory: $DNS_MEMORY_LIMIT
              requests:
                cpu: 100m
                memory: 70Mi
            livenessProbe:
              httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller.go

    	// EndpointSlices.
    	endpointSliceChangeMinSyncDelay = 1 * time.Second
    
    	// defaultSyncBackOff is the default backoff period for syncService calls.
    	defaultSyncBackOff = 1 * time.Second
    	// maxSyncBackOff is the max backoff period for syncService calls.
    	maxSyncBackOff = 1000 * time.Second
    
    	// controllerName is a unique value used with LabelManagedBy to indicated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/go.mod

    require (
    	github.com/NYTimes/gziphandler v1.1.1 // indirect
    	github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
    	github.com/beorn7/perks v1.0.1 // indirect
    	github.com/blang/semver/v4 v4.0.0 // indirect
    	github.com/cenkalti/backoff/v4 v4.2.1 // indirect
    	github.com/cespare/xxhash/v2 v2.2.0 // indirect
    	github.com/coreos/go-semver v0.3.1 // indirect
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-kubeapiserver.sh

            params+=" --audit-log-batch-throttle-burst=${ADVANCED_AUDIT_LOG_THROTTLE_BURST}"
          fi
          if [[ -n "${ADVANCED_AUDIT_LOG_INITIAL_BACKOFF:-}" ]]; then
            params+=" --audit-log-initial-backoff=${ADVANCED_AUDIT_LOG_INITIAL_BACKOFF}"
          fi
          # Truncating backend parameters
          if [[ -n "${ADVANCED_AUDIT_TRUNCATING_BACKEND:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	}
    }
    
    func (f *defaultFeatureSupportChecker) checkClient(ctx context.Context, c client) {
    	// start with 10 ms, multiply by 2 each step, until 15 s and stays on 15 seconds.
    	delayFunc := wait.Backoff{
    		Duration: 10 * time.Millisecond,
    		Cap:      15 * time.Second,
    		Factor:   2.0,
    		Steps:    11}.DelayFunc()
    	f.lock.Lock()
    	defer f.lock.Unlock()
    	for _, ep := range c.Endpoints() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/types.go

    	PercentageOfNodesToScore *int32
    
    	// PodInitialBackoffSeconds is the initial backoff for unschedulable pods.
    	// If specified, it must be greater than 0. If this value is null, the default value (1s)
    	// will be used.
    	PodInitialBackoffSeconds int64
    
    	// PodMaxBackoffSeconds is the max backoff for unschedulable pods.
    	// If specified, it must be greater than or equal to podInitialBackoffSeconds. If this value is null,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    	// certKeyPair is a certKeyContent that contains the last read, non-zero length content of the key and cert
    	certKeyPair atomic.Value
    
    	listeners []Listener
    
    	// queue only ever has one item, but it has nice error handling backoff/retry semantics
    	queue workqueue.TypedRateLimitingInterface[string]
    }
    
    var _ CertKeyContentProvider = &DynamicCertKeyPairContent{}
    var _ ControllerRunner = &DynamicCertKeyPairContent{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top