Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for fieldValidation (0.21 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.CreateOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 127 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PatchOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    force: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 138 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PatchOptions.json

    {
      "kind": "PatchOptions",
      "apiVersion": "v1",
      "dryRun": [
        "dryRunValue"
      ],
      "force": true,
      "fieldManager": "fieldManagerValue",
      "fieldValidation": "fieldValidationValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 188 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.UpdateOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 172 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.UpdateOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 127 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PatchOptions.json

    {
      "kind": "PatchOptions",
      "apiVersion": "v1",
      "dryRun": [
        "dryRunValue"
      ],
      "force": true,
      "fieldManager": "fieldManagerValue",
      "fieldValidation": "fieldValidationValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 188 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/update.go

    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    		defaultGVK := scope.Kind
    		original := r.New()
    
    		validationDirective := fieldValidation(options.FieldValidation)
    		decodeSerializer := s.Serializer
    		if validationDirective == metav1.FieldValidationWarn || validationDirective == metav1.FieldValidationStrict {
    			decodeSerializer = s.StrictSerializer
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    // given VerifiableQueryParam against the current server.
    //
    // Currently supported query params are: fieldValidation
    //
    // Support for each of these query params needs to be verified because
    // we determine whether or not to perform server-side or client-side
    // schema validation based on whether the fieldValidation query param is
    // supported or not.
    //
    // It reads the OpenAPI to see if the given GVK supports the given query param.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

                "uniqueItems": true
              },
              {
                "$ref": "#/parameters/fieldManager-Qy4HdaTW"
              },
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  10. 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)
Back to top