Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CTYPE (0.1 sec)

  1. pkg/kubelet/kubelet_pods.go

    		// node graceful shutdown). We do not re-generate the conditions based
    		// on the container statuses as they are added based on one-time events.
    		cType := v1.DisruptionTarget
    		if _, condition := podutil.GetPodConditionFromList(oldPodStatus.Conditions, cType); condition != nil {
    			s.Conditions = utilpod.ReplaceOrAppendPodCondition(s.Conditions, condition)
    		}
    	}
    
    	// set all Kubelet-owned conditions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			UID: types.UID(rand.String(5)),
    		},
    	}}
    }
    
    func getConditionsByType(list []batch.JobCondition, cType batch.JobConditionType) []*batch.JobCondition {
    	var result []*batch.JobCondition
    	for i := range list {
    		if list[i].Type == cType {
    			result = append(result, &list[i])
    		}
    	}
    	return result
    }
    
    func (pb podBuilder) name(n string) podBuilder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top