Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dispatchAsMuchAsPossibleLocked (0.17 sec)

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

    	request.NoteQueued(true)
    	qs.reqsGaugePair.RequestsWaiting.Add(1)
    	qs.seatDemandIntegrator.Set(float64(qs.totSeatsInUse + qs.totSeatsWaiting))
    }
    
    // dispatchAsMuchAsPossibleLocked does as many dispatches as possible now.
    func (qs *queueSet) dispatchAsMuchAsPossibleLocked() {
    	for qs.totRequestsWaiting != 0 && qs.totSeatsInUse < qs.dCfg.ConcurrencyLimit && qs.dispatchLocked() {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
Back to top