Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for updateHistory (0.18 sec)

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

    	}(); done {
    		return
    	}
    
    	// We trigger the change of <currentUnix>.
    	s.lock.Lock()
    	defer s.lock.Unlock()
    	if s.currentUnix == unixTime {
    		s.currentCount.Add(1)
    		return
    	}
    
    	s.updateHistory(s.currentUnix, s.currentCount.Load())
    	s.currentUnix = unixTime
    	s.currentCount.Store(1)
    
    	// We only consider updating retryAfter when bumping the current second.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top