Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for unknownH (0.3 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	"--cluster-signing-kube-apiserver-client-key-file=/cluster-signing-kube-apiserver-client/key-file",
    	"--cluster-signing-legacy-unknown-cert-file=/cluster-signing-legacy-unknown/cert-file",
    	"--cluster-signing-legacy-unknown-key-file=/cluster-signing-legacy-unknown/key-file",
    	"--concurrent-deployment-syncs=10",
    	"--concurrent-horizontal-pod-autoscaler-syncs=10",
    	"--concurrent-statefulset-syncs=15",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    	}
    	tests := []Test{
    		{
    			desc: "int-or-string and preserve-unknown-fields true",
    			globalSchema: `
    x-kubernetes-preserve-unknown-fields: true
    x-kubernetes-int-or-string: true
    `,
    			expectedCreateErrors: []string{
    				"spec.validation.openAPIV3Schema.x-kubernetes-preserve-unknown-fields: Invalid value: true: must be false if x-kubernetes-int-or-string is true",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.\n\nUnknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL expressions. This includes: - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields. - Object properties where the property schema is of an \"unknown type\". An \"unknown type\" is recursively defined as:\n  - A schema with no type and x-kubernetes-preserve-unknown-fields...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    		buildService("test1.com", wildcardIPv4, "unknown", tnow.Add(1*time.Second)),
    		buildService("test2.com", wildcardIPv4, protocol.HTTP, tnow),
    		buildService("test3.com", wildcardIPv4, "unknown", tnow.Add(2*time.Second)))
    }
    
    func TestOutboundListenerRoute(t *testing.T) {
    	testOutboundListenerRoute(t,
    		buildService("test1.com", "1.2.3.4", "unknown", tnow.Add(1*time.Second)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			},
    		},
    		{name: "known and unknown fields",
    			obj: map[string]interface{}{
    				"withUnknown": map[string]interface{}{
    					"known":   1,
    					"unknown": "a",
    				},
    				"withUnknownList": []interface{}{
    					map[string]interface{}{
    						"known":   1,
    						"unknown": "a",
    					},
    					map[string]interface{}{
    						"known":   1,
    						"unknown": "b",
    					},
    					map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  7. pkg/apis/certificates/validation/validation_test.go

    				},
    			},
    			errs: field.ErrorList{
    				field.Required(specPath.Child("usages"), ""),
    			},
    		},
    		"unknown and duplicate usages": {
    			csr: capi.CertificateSigningRequest{
    				ObjectMeta: validObjectMeta,
    				Spec: capi.CertificateSigningRequestSpec{
    					Usages:     []capi.KeyUsage{"unknown", "unknown"},
    					Request:    newCSRPEM(t),
    					SignerName: validSignerName,
    				},
    			},
    			errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:MaxLength=316
      optional string type = 1;
    
      // status of the condition, one of True, False, Unknown.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Enum=True;False;Unknown
      optional string status = 2;
    
      // observedGeneration represents the .metadata.generation that the condition was set based upon.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:MaxLength=316
      optional string type = 1;
    
      // status of the condition, one of True, False, Unknown.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Enum=True;False;Unknown
      optional string status = 2;
    
      // observedGeneration represents the .metadata.generation that the condition was set based upon.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top