Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WithCaptureProfile (0.29 sec)

  1. pkg/scheduler/scheduler.go

    		frameworkruntime.WithKubeConfig(options.kubeConfig),
    		frameworkruntime.WithInformerFactory(informerFactory),
    		frameworkruntime.WithSnapshotSharedLister(snapshot),
    		frameworkruntime.WithCaptureProfile(frameworkruntime.CaptureProfile(options.frameworkCapturer)),
    		frameworkruntime.WithParallelism(int(options.parallelism)),
    		frameworkruntime.WithExtenders(extenders),
    		frameworkruntime.WithMetricsRecorder(metricsRecorder),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	}
    }
    
    // CaptureProfile is a callback to capture a finalized profile.
    type CaptureProfile func(config.KubeSchedulerProfile)
    
    // WithCaptureProfile sets a callback to capture the finalized profile.
    func WithCaptureProfile(c CaptureProfile) Option {
    	return func(o *frameworkOptions) {
    		o.captureProfile = c
    	}
    }
    
    // WithMetricsRecorder sets metrics recorder for the scheduling frameworkImpl.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top