Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for JitterUntil (0.35 sec)

  1. pkg/kubelet/server/stats/volume_stat_calculator.go

    	}
    }
    
    // StartOnce starts pod volume calc that will occur periodically in the background until s.StopOnce is called
    func (s *volumeStatCalculator) StartOnce() *volumeStatCalculator {
    	s.startO.Do(func() {
    		go wait.JitterUntil(func() {
    			s.calcAndStoreStats()
    		}, s.jitterPeriod, 1.0, true, s.stopChannel)
    	})
    	return s
    }
    
    // StopOnce stops background pod volume calculation.  Will not stop a currently executing calculations until
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:55:10 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top