Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bazPlugin (0.09 sec)

  1. pkg/scheduler/apis/config/v1/defaults_test.go

    						},
    					},
    					{
    						SchedulerName: ptr.To("custom-scheduler"),
    						Plugins: &configv1.Plugins{
    							Bind: configv1.PluginSet{
    								Enabled: []configv1.Plugin{
    									{Name: "BarPlugin"},
    								},
    								Disabled: []configv1.Plugin{
    									{Name: names.DefaultBinder},
    								},
    							},
    						},
    					},
    				},
    			},
    			expected: &configv1.KubeSchedulerConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    	// Construct another Pod, and associate its scheduler failure to plugin "barPlugin".
    	hpp2 := clonePod(highPriorityPodInfo.Pod, "hpp2")
    	// This Pod will go to the unschedulable Pod pool.
    	err = q.AddUnschedulableIfNotPresent(logger, q.newQueuedPodInfo(hpp2, "barPlugin"), q.SchedulingCycle())
    	if err != nil {
    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top