Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newListWorkEstimator (0.37 sec)

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

    	estimator := &workEstimator{
    		minimumSeats:          config.MinimumSeats,
    		maximumSeatsLimit:     config.MaximumSeatsLimit,
    		listWorkEstimator:     newListWorkEstimator(objectCountFn, config, maxSeatsFn),
    		mutatingWorkEstimator: newMutatingWorkEstimator(watchCountFn, config, maxSeatsFn),
    	}
    	return estimator.estimate
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/storage"
    	etcdfeature "k8s.io/apiserver/pkg/storage/feature"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/klog/v2"
    )
    
    func newListWorkEstimator(countFn objectCountGetterFunc, config *WorkEstimatorConfig, maxSeatsFn maxSeatsFunc) WorkEstimatorFunc {
    	estimator := &listWorkEstimator{
    		config:        config,
    		countGetterFn: countFn,
    		maxSeatsFn:    maxSeatsFn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top