Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 51 of 51 for isChan (0.07 sec)

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

    	highWatermark float64
    	smoothed      float64
    }
    
    func (stats *seatDemandStats) update(obs fq.IntegratorResults) {
    	stats.highWatermark = obs.Max
    	if obs.Duration <= 0 {
    		return
    	}
    	if math.IsNaN(obs.Deviation) {
    		obs.Deviation = 0
    	}
    	stats.avg = obs.Average
    	stats.stdDev = obs.Deviation
    	envelope := obs.Average + obs.Deviation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top