Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addToActiveQ (0.2 sec)

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

    	return s
    }
    
    // addToActiveQ tries to add pod to active queue. It returns 2 parameters:
    // 1. a boolean flag to indicate whether the pod is added successfully.
    // 2. an error for the caller to act on.
    func (p *PriorityQueue) addToActiveQ(logger klog.Logger, pInfo *framework.QueuedPodInfo) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			q := NewTestQueueWithObjects(ctx, newDefaultQueueSort(), []runtime.Object{tt.pod}, WithPreEnqueuePluginMap(m),
    				WithPodInitialBackoffDuration(time.Second*30), WithPodMaxBackoffDuration(time.Second*60))
    			got, _ := q.addToActiveQ(logger, q.newQueuedPodInfo(tt.pod))
    			if got != tt.wantSuccess {
    				t.Errorf("Unexpected result: want %v, but got %v", tt.wantSuccess, got)
    			}
    			if tt.wantUnschedulablePods != len(q.unschedulablePods.podInfoMap) {
    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