Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for fieldValidation (1.31 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier.go

    	return &fallbackQueryParamVerifier{
    		primary:   primary,
    		secondary: secondary,
    	}
    }
    
    // HasSupport returns an error if the passed GVK does not support the
    // query param (fieldValidation), as determined by the primary and
    // secondary OpenAPI endpoints. The primary endoint is checked first,
    // but if there is an error retrieving the OpenAPI V3 document, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 19:13:54 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3.go

    }
    
    var namespaceGVK = schema.GroupVersionKind{Group: "", Version: "v1", Kind: "Namespace"}
    
    // HasSupport returns nil error if the passed GVK supports the parameter
    // (stored in struct; usually "fieldValidation") for Patch endpoint.
    // Returns an error if the passed GVK does not support the query param,
    // or if another error occurred. If the Open API V3 spec for a CRD is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3_test.go

    		crds             []schema.GroupKind      // CRDFinder returns these CRD's
    		gvk              schema.GroupVersionKind // GVK whose OpenAPI V3 spec is checked
    		queryParam       VerifiableQueryParam    // Usually "fieldValidation"
    		expectedSupports bool
    	}{
    		"Field validation query param is supported for batch/v1/Job": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    				Group:   "batch",
    				Version: "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 04:44:45 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top