func TestSchedulingGates(t *testing.T) { … }
func TestCoreResourceEnqueue(t *testing.T) { … }
var _ …
var _ …
type fakeCRPlugin …
func (f *fakeCRPlugin) Name() string { … }
func (f *fakeCRPlugin) Filter(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ *framework.NodeInfo) *framework.Status { … }
func (f *fakeCRPlugin) EventsToRegister(_ context.Context) ([]framework.ClusterEventWithHint, error) { … }
func TestCustomResourceEnqueue(t *testing.T) { … }
func TestRequeueByBindFailure(t *testing.T) { … }
type firstFailBindPlugin …
func (*firstFailBindPlugin) Name() string { … }
func (p *firstFailBindPlugin) Bind(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodename string) *framework.Status { … }
func TestRequeueByPermitRejection(t *testing.T) { … }
type fakePermitPlugin …
const fakePermitPluginName …
func (p *fakePermitPlugin) Name() string { … }
func (p *fakePermitPlugin) Permit(ctx context.Context, state *framework.CycleState, _ *v1.Pod, _ string) (*framework.Status, time.Duration) { … }
func (p *fakePermitPlugin) EventsToRegister(_ context.Context) ([]framework.ClusterEventWithHint, error) { … }