Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for BackOff (0.18 sec)

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

    		if backoff < 1 || backoff > 2 {
    			t.Errorf("backoff out of range: %d", backoff)
    		}
    	}
    
    	// negative jitter, shall be a fixed backoff
    	backoffMgr = NewJitteredBackoffManager(1, -1, testingclock.NewFakeClock(time.Now()))
    	backoff := backoffMgr.(*jitteredBackoffManagerImpl).getNextBackoff()
    	if backoff != 1 {
    		t.Errorf("backoff should be 1, but got %d", backoff)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. pkg/controller/job/backoff_utils.go

    		if len(newFailedPods) == 0 {
    			return *backoff
    		}
    
    		backoff.failuresAfterLastSuccess = backoff.failuresAfterLastSuccess + int32(len(newFailedPods))
    		lastFailureTime := getFinishedTime(newFailedPods[len(newFailedPods)-1])
    		backoff.lastFailureTime = &lastFailureTime
    		return *backoff
    
    	} else {
    		if len(newFailedPods) == 0 {
    			backoff.failuresAfterLastSuccess = 0
    			backoff.lastFailureTime = nil
    			return *backoff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/controller/job/backoff_utils_test.go

    				failuresAfterLastSuccess: 0,
    			},
    		},
    		"Empty backoff store with no success/failure": {
    			storeInitializer: emptyStoreInitializer,
    			newSucceededPods: []metav1.Time{},
    			newFailedPods:    []metav1.Time{},
    			wantBackoffRecord: backoffRecord{
    				key:                      "key",
    				failuresAfterLastSuccess: 0,
    			},
    		},
    		"Empty backoff store with one success": {
    			storeInitializer: emptyStoreInitializer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_manager.go

    }
    
    // imageManager provides the functionalities for image pulling.
    type imageManager struct {
    	recorder     record.EventRecorder
    	imageService kubecontainer.ImageService
    	backOff      *flowcontrol.Backoff
    	// It will check the presence of the image, and report the 'image pulling', image pulled' events correspondingly.
    	puller imagePuller
    
    	podPullingTimeRecorder ImagePodPullingTimeRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

                                if (fileLockContentionHandler.maybePingOwner(lockInfo.port, lockInfo.lockId, displayName, backoff.getTimer().getElapsedMillis() - lastPingTime, backoff.getSignal())) {
                                    lastPingTime = backoff.getTimer().getElapsedMillis();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository.java

                        LOGGER.debug("Error while accessing remote repository {}. Waiting {}ms before next retry. {} retries left", repositoryName, backoff, maxTentativesCount - retries, failure);
                        try {
                            Thread.sleep(backoff);
                            backoff *= 2;
                        } catch (InterruptedException e) {
                            throw UncheckedException.throwAsUncheckedException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/delegating.go

    	DenyCacheTTL time.Duration
    
    	// WebhookRetryBackoff specifies the backoff parameters for the authorization webhook retry logic.
    	// This allows us to configure the sleep time at each iteration and the maximum number of retries allowed
    	// before we fail the webhook call in order to limit the fan out that ensues when the system is degraded.
    	WebhookRetryBackoff *wait.Backoff
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    	maxControlledAttrCacheSize = 10000
    )
    
    // DefaultRetryBackoff returns the default backoff parameters for webhook retry.
    func DefaultRetryBackoff() *wait.Backoff {
    	backoff := webhook.DefaultRetryBackoffWithInitialDelay(500 * time.Millisecond)
    	return &backoff
    }
    
    // Ensure Webhook implements the authorizer.Authorizer interface.
    var _ authorizer.Authorizer = (*WebhookAuthorizer)(nil)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pkg/kubelet/events/event.go

    	StartedContainer        = "Started"
    	FailedToCreateContainer = "Failed"
    	FailedToStartContainer  = "Failed"
    	KillingContainer        = "Killing"
    	PreemptContainer        = "Preempting"
    	BackOffStartContainer   = "BackOff"
    	ExceededGracePeriod     = "ExceededGracePeriod"
    )
    
    // Pod event reason list
    const (
    	FailedToKillPod                = "FailedKillPod"
    	FailedToCreatePodContainer     = "FailedCreatePodContainer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    //     activeQ when their backoff periods complete.
    //   - unschedulablePods holds pods that were already attempted for scheduling and
    //     are currently determined to be unschedulable.
    type PriorityQueue struct {
    	*nominator
    
    	stop  chan struct{}
    	clock clock.Clock
    
    	// pod initial backoff duration.
    	podInitialBackoffDuration time.Duration
    	// pod maximum backoff duration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top