Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for nvalid (0.33 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                "type": "string"
              },
              "dryRun": {
                "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "type": "string"
              },
              "dryRun": {
                "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    		oldHistory apps.ControllerRevision
    		isValid    bool
    	}{{
    		name:       "valid",
    		newHistory: valid,
    		oldHistory: valid,
    		isValid:    true,
    	}, {
    		name:       "invalid",
    		newHistory: noVersion,
    		oldHistory: valid,
    		isValid:    false,
    	}, {
    		name:       "changed data",
    		newHistory: changedData,
    		oldHistory: valid,
    		isValid:    false,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    	testCases := []struct {
    		name  string
    		valid bool
    	}{
    		{name: "header1", valid: true},
    		{name: "X-Requested-With", valid: true},
    		{name: "", valid: false},
    	}
    
    	for _, tc := range testCases {
    		if got := ValidateHTTPHeaderName(tc.name); (got == nil) != tc.valid {
    			t.Errorf("ValidateHTTPHeaderName(%q) => got valid=%v, want valid=%v",
    				tc.name, got == nil, tc.valid)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			oldObj: map[string]interface{}{
    				"foo": "invalid",
    			},
    			schema: withRulePtr(objectTypePtr(map[string]schema.Structural{
    				"foo": stringType,
    			}), "self.foo == 'valid' || (oldSelf.hasValue() && oldSelf.value().foo != 'valid')"),
    		},
    		{
    			name: "allow invalid new value if old value is also invalid with chained optionals",
    			obj: map[string]interface{}{
    				"foo": "invalid again",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    		expectedError: ``,
    	}, {
    		name: "should pass on invalid AdmissionReviewVersion with invalid previous versions",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:                    "webhook.k8s.io",
    			ClientConfig:            validClientConfig,
    			SideEffects:             &unknownSideEffect,
    			AdmissionReviewVersions: []string{"invalid-v1", "invalid-v2"},
    		},
    		}, true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation_test.go

    		wantError     error
    	}{
    		"empty is valid": {
    			indexesString: "",
    			completions:   6,
    			wantTotal:     0,
    		},
    		"single number is valid": {
    			indexesString: "1",
    			completions:   6,
    			wantTotal:     1,
    		},
    		"single interval is valid": {
    			indexesString: "1-3",
    			completions:   6,
    			wantTotal:     3,
    		},
    		"mixed intervals valid": {
    			indexesString: "0,1-3,5,7-10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    
    // Test invalid tf.Fill
    func.func @testFill(tensor<i32>, tensor<f32>) -> tensor<?x?xf32> {
    ^bb0(%arg0: tensor<i32>, %arg1: tensor<f32>):
      // expected-error @+1 {{requires dims to be a 1D tensor}}
      %0 = "tf.Fill"(%arg0, %arg1) : (tensor<i32>, tensor<f32>) -> (tensor<?x?xf32>)
      func.return %0 : tensor<?x?xf32>
    }
    
    // -----
    
    // Test invalid tf.Fill
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"username": "",
    				"groups": null,
    				"exp": %d,
    				"baz": "qux"
    			}`, valid.Unix()),
    			want: &user.DefaultInfo{},
    		},
    		// test to assert the minimum valid jwt payload
    		// the required claims are iss, aud, exp and <claimMappings.Username> (in this case user).
    		{
    			name: "minimum valid jwt payload",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  10. src/crypto/x509/verify_test.go

    	}
    }
    
    func expectHashError(t *testing.T, err error) {
    	if err == nil {
    		t.Fatalf("no error resulted from invalid hash")
    	}
    	if expected := "algorithm unimplemented"; !strings.Contains(err.Error(), expected) {
    		t.Fatalf("error resulting from invalid hash didn't contain '%s', rather it was: %v", expected, err)
    	}
    }
    
    func expectNameConstraintsError(t *testing.T, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top