Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withMetricsRecorder (0.18 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    func WithCaptureProfile(c CaptureProfile) Option {
    	return func(o *frameworkOptions) {
    		o.captureProfile = c
    	}
    }
    
    // WithMetricsRecorder sets metrics recorder for the scheduling frameworkImpl.
    func WithMetricsRecorder(r *metrics.MetricAsyncRecorder) Option {
    	return func(o *frameworkOptions) {
    		o.metricsRecorder = r
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    func WithPreEnqueuePluginMap(m map[string][]framework.PreEnqueuePlugin) Option {
    	return func(o *priorityQueueOptions) {
    		o.preEnqueuePluginMap = m
    	}
    }
    
    // WithMetricsRecorder sets metrics recorder.
    func WithMetricsRecorder(recorder metrics.MetricAsyncRecorder) Option {
    	return func(o *priorityQueueOptions) {
    		o.metricsRecorder = recorder
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top