Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewFakeFilterPlugin (0.13 sec)

  1. pkg/scheduler/testing/framework/fake_plugins.go

    		return framework.NewStatus(returnCode, fmt.Sprintf("injecting failure for pod %v", pod.Name))
    	}
    
    	return nil
    }
    
    // NewFakeFilterPlugin initializes a fakeFilterPlugin and returns it.
    func NewFakeFilterPlugin(failedNodeReturnCodeMap map[string]framework.Code) frameworkruntime.PluginFactory {
    	return func(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterFilterPlugin(
    					"FakeFilter",
    					tf.NewFakeFilterPlugin(map[string]framework.Code{"3": framework.Unschedulable}),
    				),
    				tf.RegisterScorePlugin("NumericMap", newNumericMapPlugin(), 1),
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top