Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for QueueSort (0.4 sec)

  1. pkg/scheduler/apis/config/zz_generated.deepcopy.go

    func (in *Plugins) DeepCopyInto(out *Plugins) {
    	*out = *in
    	in.PreEnqueue.DeepCopyInto(&out.PreEnqueue)
    	in.QueueSort.DeepCopyInto(&out.QueueSort)
    	in.PreFilter.DeepCopyInto(&out.PreFilter)
    	in.Filter.DeepCopyInto(&out.Filter)
    	in.PostFilter.DeepCopyInto(&out.PostFilter)
    	in.PreScore.DeepCopyInto(&out.PreScore)
    	in.Score.DeepCopyInto(&out.Score)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 22:02:57 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    		// NOTE: this is primarily for tests.
    		return func(_, _ *framework.QueuedPodInfo) bool { return false }
    	}
    
    	if len(f.queueSortPlugins) == 0 {
    		panic("No QueueSort plugin is registered in the frameworkImpl.")
    	}
    
    	// Only one QueueSort plugin can be enabled.
    	return f.queueSortPlugins[0].Less
    }
    
    // RunPreFilterPlugins runs the set of configured PreFilter plugins. It returns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	plfeature "k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/queuesort"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/schedulinggates"
    	"k8s.io/kubernetes/pkg/scheduler/metrics"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	"k8s.io/kubernetes/pkg/scheduler/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/kube-scheduler/config/v1.Plugins"),
    						},
    					},
    					"pluginConfig": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top