Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetEarliestPodStartTime (0.2 sec)

  1. pkg/scheduler/framework/preemption/preemption.go

    			return -int64(len(nodesToVictims[node].Pods))
    		}
    		latestStartTimeScoreFunc := func(node string) int64 {
    			// Get the earliest start time of all pods on the current node.
    			earliestStartTimeOnNode := util.GetEarliestPodStartTime(nodesToVictims[node])
    			if earliestStartTimeOnNode == nil {
    				logger.Error(errors.New("earliestStartTime is nil for node"), "Should not reach here", "node", node)
    				return int64(math.MinInt64)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
Back to top