Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isEvicted (0.18 sec)

  1. pkg/kubelet/eviction/types.go

    // pod - the pod to kill
    // status - the desired status to associate with the pod (i.e. why its killed)
    // gracePeriodOverride - the grace period override to use instead of what is on the pod spec
    type KillPodFunc func(pod *v1.Pod, isEvicted bool, gracePeriodOverride *int64, fn func(*v1.PodStatus)) error
    
    // MirrorPodFunc returns the mirror pod for the given static pod and
    // whether it was known to the pod manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    	systemInhibitDelay := 40 * time.Second
    	overrideSystemInhibitDelay := 40 * time.Second
    	activePodsFunc := func() []*v1.Pod {
    		return nil
    	}
    	killPodsFunc := func(pod *v1.Pod, isEvicted bool, gracePeriodOverride *int64, fn func(*v1.PodStatus)) error {
    		return nil
    	}
    	syncNodeStatus := func() {}
    
    	var shutdownChan chan bool
    	var shutdownChanMut sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    func (s *podSyncStatus) IsTerminated() bool           { return !s.terminatedAt.IsZero() }
    func (s *podSyncStatus) IsFinished() bool             { return s.finished }
    func (s *podSyncStatus) IsEvicted() bool              { return s.evicted }
    func (s *podSyncStatus) IsDeleted() bool              { return s.deleted }
    func (s *podSyncStatus) IsStarted() bool              { return !s.startedAt.IsZero() }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. pkg/controller/podgc/gc_controller.go

    func (o byEvictionAndCreationTimestamp) Swap(i, j int) { o[i], o[j] = o[j], o[i] }
    
    func (o byEvictionAndCreationTimestamp) Less(i, j int) bool {
    	iEvicted, jEvicted := eviction.PodIsEvicted(o[i].Status), eviction.PodIsEvicted(o[j].Status)
    	// Evicted pod is smaller
    	if iEvicted != jEvicted {
    		return iEvicted
    	}
    	if o[i].CreationTimestamp.Equal(&o[j].CreationTimestamp) {
    		return o[i].Name < o[j].Name
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. test-site/activator-launch-1.3.2.jar

    IvyNode, IvyNodeUsage); public final org.apache.ivy.core.module.id.ModuleRevisionId getResolvedId(); public final void updateConfsToFetch(java.util.Collection); public final org.apache.ivy.core.module.id.ModuleRevisionId getId(); public final boolean isEvicted(); public final String[] getRealConfs(String); public final boolean hasProblem(); public final org.apache.ivy.core.module.descriptor.Configuration getConfiguration(String); public final IvyNodeEviction$EvictionData getEvictedData(); public final...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top