Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isPodWorthRequeuing (0.78 sec)

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

    				return true
    			}
    		}
    	}
    
    	logger.V(6).Info("receive an event that isn't interested by any enabled plugins", "event", event)
    
    	return false
    }
    
    // isPodWorthRequeuing calls QueueingHintFn of only plugins registered in pInfo.unschedulablePlugins and pInfo.PendingPlugins.
    //
    // If any of pInfo.PendingPlugins return Queue,
    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

    			actual := q.isPodWorthRequeuing(logger, test.podInfo, test.event, test.oldObj, test.newObj)
    			if actual != test.expected {
    				t.Errorf("isPodWorthRequeuing() = %v, want %v", actual, test.expected)
    			}
    			if count != test.expectedExecutionCount {
    				t.Errorf("isPodWorthRequeuing() executed queueing hint functions %v times, expected: %v", count, test.expectedExecutionCount)
    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