Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isPodBackingoff (0.12 sec)

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

    	p.addNominatedPodUnlocked(logger, pInfo.PodInfo, nil)
    	return true
    }
    
    // isPodBackingoff returns true if a pod is still waiting for its backoff timer.
    // If this returns true, the pod should not be re-tried.
    func (p *PriorityQueue) isPodBackingoff(podInfo *framework.QueuedPodInfo) bool {
    	if podInfo.Gated {
    		return false
    	}
    	boTime := p.getBackoffTime(podInfo)
    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