Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RegisterPluginAsExtensions (0.22 sec)

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

    	return RegisterPluginAsExtensions(pluginName, pluginNewFunc, "PreScore")
    }
    
    // RegisterBindPlugin returns a function to register a Bind Plugin to a given registry.
    func RegisterBindPlugin(pluginName string, pluginNewFunc runtime.PluginFactory) RegisterPluginFunc {
    	return RegisterPluginAsExtensions(pluginName, pluginNewFunc, "Bind")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			registeredPlugins := []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterPluginAsExtensions(noderesources.Name, nodeResourcesFitFunc, "Filter", "PreFilter"),
    				tf.RegisterPluginAsExtensions("test-plugin", newTestPlugin, "PreFilter"),
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			}
    			var extenders []framework.Extender
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    	scache.AddNode(logger, &node)
    
    	fns := []tf.RegisterPluginFunc{
    		tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    		tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    		tf.RegisterPluginAsExtensions(nodeports.Name, nodeports.New, "Filter", "PreFilter"),
    	}
    	scheduler, bindingChan, errChan := setupTestSchedulerWithOnePodOnNode(ctx, t, queuedPodStore, scache, pod, &node, fns...)
    
    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