Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MaxHistory (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    	startIndex := 0
    	// Entries that exceed 2*retryAfter or maxRetryAfter are never going to be needed.
    	maxHistory := 2 * s.retryAfter.Load()
    	if maxHistory > maxRetryAfter {
    		maxHistory = maxRetryAfter
    	}
    	for ; startIndex < len(s.history) && unixTime-s.history[startIndex].unixTime > maxHistory; startIndex++ {
    	}
    	if startIndex > 0 {
    		s.history = s.history[startIndex:]
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    org.junit.runners.Suite { void MaxCore$1$1(MaxCore$1, Class, java.util.List); } org/junit/experimental/max/MaxHistory$RememberingListener.class package org.junit.experimental.max; final synchronized class MaxHistory$RememberingListener extends org.junit.runner.notification.RunListener { private long overallStart; private java.util.Map starts; private void MaxHistory$RememberingListener(MaxHistory); public void testStarted(org.junit.runner.Description) throws Exception; public void testFinished(org....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top