Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OldConditions (0.34 sec)

  1. pkg/apis/certificates/validation/validation.go

    			oldConditions := findConditions(oldCSR, t)
    			newConditions := findConditions(newCSR, t)
    			switch {
    			case len(newConditions) < len(oldConditions):
    				// removals are prevented above
    			case len(newConditions) > len(oldConditions):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. pkg/scheduler/eventhandlers_test.go

    	}
    
    	for _, test := range []struct {
    		Name          string
    		Changed       bool
    		OldConditions []v1.NodeCondition
    		NewConditions []v1.NodeCondition
    	}{
    		{
    			Name:          "no condition changed",
    			Changed:       false,
    			OldConditions: []v1.NodeCondition{{Type: v1.NodeDiskPressure, Status: v1.ConditionTrue}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. pkg/volume/util/resize_util.go

    	for _, condition := range resizeConditions {
    		resizeConditionMap[condition.Type] = &resizeProcessStatus{condition, false}
    	}
    
    	oldConditions := pvc.Status.Conditions
    	newConditions := []v1.PersistentVolumeClaimCondition{}
    	for _, condition := range oldConditions {
    		// If Condition is of not resize type, we keep it.
    		if _, ok := knownResizeConditions[condition.Type]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top