Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WildCardEvent (0.14 sec)

  1. pkg/scheduler/internal/queue/events.go

    	// WildCardEvent semantically matches all resources on all actions.
    	WildCardEvent = framework.ClusterEvent{Resource: framework.WildCard, ActionType: framework.All, Label: "WildCardEvent"}
    	// UnschedulableTimeout is the event when a pod stays in unschedulable for longer than timeout.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}{
    		{
    			name:     "nil PreEnqueueCheck",
    			podInfos: podInfos,
    			event:    WildCardEvent,
    			want:     []string{"p0", "p1", "p2", "p3", "p4"},
    		},
    		{
    			name:            "move Pods with priority greater than 2",
    			podInfos:        podInfos,
    			event:           WildCardEvent,
    			preEnqueueCheck: func(pod *v1.Pod) bool { return *pod.Spec.Priority >= 2 },
    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