Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for totSeatsInUse (0.11 sec)

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

    	// there are no queues; otherwise the requests are tracked in the queues.
    	requestsExecutingSet sets.Set[*request]
    
    	// totSeatsInUse is the number of total "seats" in use by all the
    	// request(s) that are currently executing in this queueset.
    	totSeatsInUse int
    
    	// totSeatsWaiting is the sum, over all the waiting requests, of their
    	// max width.
    	totSeatsWaiting int
    
    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/fairqueuing/queueset/queueset_test.go

    				totSeatsInUse:            test.totSeatsInUse,
    				qCfg:                     fq.QueuingConfig{Name: "TestSelectQueueLocked/" + test.name},
    				dCfg: fq.DispatchingConfig{
    					ConcurrencyLimit: test.concurrencyLimit,
    				},
    				queues: test.queues,
    			}
    
    			t.Logf("QS: robin index=%d, seats in use=%d limit=%d", qs.robinIndex, qs.totSeatsInUse, qs.dCfg.ConcurrencyLimit)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top