Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestValidatePodSpec (0.27 sec)

  1. pkg/apis/core/validation/validation_test.go

    	for _, tc := range errorCases {
    		if errs := validatePodConditions(tc.podConditions, field.NewPath("field")); len(errs) == 0 {
    			t.Errorf("expected tc %q to fail", tc.desc)
    		}
    	}
    }
    
    func TestValidatePodSpec(t *testing.T) {
    	activeDeadlineSeconds := int64(30)
    	activeDeadlineSecondsMax := int64(math.MaxInt32)
    
    	minUserID := int64(0)
    	maxUserID := int64(2147483647)
    	minGroupID := int64(0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top