Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for finalSeats (0.26 sec)

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

    	// to preserve the total amount of work.
    	if oldestReqFromMinQueue.workEstimate.FinalSeats > uint64(qs.dCfg.ConcurrencyLimit) {
    		finalSeats := uint64(qs.dCfg.ConcurrencyLimit)
    		additionalLatency := oldestReqFromMinQueue.workEstimate.finalWork.DurationPerSeat(float64(finalSeats))
    		oldestReqFromMinQueue.workEstimate.FinalSeats = finalSeats
    		oldestReqFromMinQueue.workEstimate.AdditionalLatency = additionalLatency
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			}
    			if test.finalSeatsExpected != workestimateGot.FinalSeats {
    				t.Errorf("Expected work estimate to match: %d final seats, but got: %d", test.finalSeatsExpected, workestimateGot.FinalSeats)
    			}
    			if test.additionalLatencyExpected != workestimateGot.AdditionalLatency {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		httplog.AddKeyValue(ctx, "apf_iseats", workEstimate.InitialSeats)
    		httplog.AddKeyValue(ctx, "apf_fseats", workEstimate.FinalSeats)
    		httplog.AddKeyValue(ctx, "apf_additionalLatency", workEstimate.AdditionalLatency)
    
    		return workEstimate
    	}
    
    	var served bool
    	isMutatingRequest := !nonMutatingRequestVerbs.Has(requestInfo.Verb)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top