Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newQueuedPodInfoForLookup (0.18 sec)

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

    				// This pod will be requeued to backoffQ because no plugin is registered as unschedulable plugin.
    				{podEnqueued: newQueuedPodInfoForLookup(pod)},
    				{eventHappens: &CSINodeUpdate},
    				// This pod will be requeued to backoffQ because no plugin is registered as unschedulable plugin.
    				{podEnqueued: newQueuedPodInfoForLookup(pod2)},
    			},
    			wantBackoffQPodNames: []string{"targetpod", "targetpod2"},
    			wantInFlightPods:     nil, // empty
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    }
    
    // Making sure that PriorityQueue implements SchedulingQueue.
    var _ SchedulingQueue = &PriorityQueue{}
    
    // newQueuedPodInfoForLookup builds a QueuedPodInfo object for a lookup in the queue.
    func newQueuedPodInfoForLookup(pod *v1.Pod, plugins ...string) *framework.QueuedPodInfo {
    	// Since this is only used for a lookup in the queue, we only need to set the Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top