Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for QueueSort (0.16 sec)

  1. pkg/scheduler/apis/config/validation/validation.go

    	if profiles[0].Plugins != nil {
    		canon = profiles[0].Plugins.QueueSort
    		if len(profiles[0].Plugins.QueueSort.Enabled) != 0 {
    			queueSortName = profiles[0].Plugins.QueueSort.Enabled[0].Name
    		}
    		length := len(profiles[0].Plugins.QueueSort.Enabled)
    		if length > 1 {
    			errs = append(errs, field.Invalid(path.Index(0).Child("plugins", "queueSort", "Enabled"), length, "only one queue sort plugin can be enabled"))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler_test.go

    						Plugins: &schedulerapi.Plugins{
    							QueueSort: schedulerapi.PluginSet{Enabled: []schedulerapi.Plugin{{Name: "PrioritySort"}}},
    							Bind:      schedulerapi.PluginSet{Enabled: []schedulerapi.Plugin{{Name: "DefaultBinder"}}},
    						},
    					},
    					schedulerapi.KubeSchedulerProfile{
    						SchedulerName: "bar",
    						Plugins: &schedulerapi.Plugins{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation_test.go

    		SchedulerName: "me",
    		Plugins: &config.Plugins{
    			QueueSort: config.PluginSet{
    				Enabled: []config.Plugin{{Name: "PrioritySort"}},
    			},
    		},
    		PluginConfig: []config.PluginConfig{{
    			Name: "PrioritySort",
    		}},
    	}, {
    		SchedulerName: "other",
    		Plugins: &config.Plugins{
    			QueueSort: config.PluginSet{
    				Enabled: []config.Plugin{{Name: "CustomSort"}},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/preemption/preemption_test.go

    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			logger, _ := ktesting.NewTestContext(t)
    			registeredPlugins := append([]tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New)},
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			)
    			var objs []runtime.Object
    			for _, p := range append(tt.testPods, tt.initPods...) {
    				objs = append(objs, p)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/interface.go

    }
    
    // LessFunc is the function to sort pod info
    type LessFunc func(podInfo1, podInfo2 *QueuedPodInfo) bool
    
    // QueueSortPlugin is an interface that must be implemented by "QueueSort" plugins.
    // These plugins are used to sort pods in the scheduling queue. Only one queue sort
    // plugin may be enabled at a time.
    type QueueSortPlugin interface {
    	Plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top