Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bindPlugins (0.1 sec)

  1. pkg/scheduler/framework/interface.go

    	Permit(ctx context.Context, state *CycleState, p *v1.Pod, nodeName string) (*Status, time.Duration)
    }
    
    // BindPlugin is an interface that must be implemented by "Bind" plugins. Bind
    // plugins are used to bind a pod to a Node.
    type BindPlugin interface {
    	Plugin
    	// Bind plugins will not be called until all pre-bind plugins have completed. Each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler_test.go

    func (pl *fakeQueueSortPlugin) Name() string {
    	return queueSort
    }
    
    func (pl *fakeQueueSortPlugin) Less(_, _ *framework.QueuedPodInfo) bool {
    	return false
    }
    
    var _ framework.BindPlugin = &fakebindPlugin{}
    
    // fakebindPlugin is a no-op implementation for Bind extension point.
    type fakebindPlugin struct{}
    
    func (t *fakebindPlugin) Name() string {
    	return fakeBind
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top