Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetStatus (0.33 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    			}
    			_, savedReadyCondition := controllerutil.GetNodeCondition(nodeController.nodeHealthMap.getDeepCopy(test.node.Name).status, v1.NodeReady)
    			savedStatus := getStatus(savedReadyCondition)
    			currentStatus := getStatus(currentReadyCondition)
    			if !apiequality.Semantic.DeepEqual(currentStatus, savedStatus) {
    				t.Errorf("expected %v, got %v", savedStatus, currentStatus)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getState()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Method <org.gradle.api.Project.getStatus()> does not have raw return type assignable to org.gradle.api.provider.Property in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    			failed := int32(len(failedPods)) + tc.job.Status.Failed + int32(len(uncounted.failed))
    			if succeeded != tc.wantSucceeded {
    				t.Errorf("getStatus reports %d succeeded pods, want %d", succeeded, tc.wantSucceeded)
    			}
    			if failed != tc.wantFailed {
    				t.Errorf("getStatus reports %d succeeded pods, want %d", failed, tc.wantFailed)
    			}
    		})
    	}
    }
    
    func TestTrackJobStatusAndRemoveFinalizers(t *testing.T) {
    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