Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for NotSupported (0.13 sec)

  1. pkg/proxy/apis/config/validation/validation_test.go

    		},
    		"invalid DetectLocalMode": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    				config.DetectLocalMode = "Guess"
    			},
    			expectedErrs: field.ErrorList{field.NotSupported(newPath.Child("DetectLocalMode"), "Guess", []string{"ClusterCIDR", "NodeCIDR", "BridgeInterface", "InterfaceNamePrefix", ""})},
    		},
    		"invalid logging format": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. pkg/apis/networking/validation/validation_test.go

    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", utilpointer.String("bad-scope"), nil)),
    			),
    			expectedErrs: field.ErrorList{field.NotSupported(field.NewPath("spec.parameters.scope"),
    				"bad-scope", []string{"Cluster", "Namespace"})},
    		},
    		"valid name, valid controller, valid Namespace scope": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    				{ResourceName: "cpu", RestartPolicy: "NotRequired"},
    				{ResourceName: "memory", RestartPolicy: "Restarrrt"},
    			},
    			ExpectError:      true,
    			Errors:           field.ErrorList{field.NotSupported(field.NewPath("field"), core.ResourceResizeRestartPolicy("Restarrrt"), tSupportedResizePolicies.List())},
    			PodRestartPolicy: "Always",
    		},
    		"ValidMemoryandInvalidCPUPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    
    Running the task with the configuration cache enabled produces the following error:
    ----
    include::{snippetsPath}/configurationCache/topLevel/tests-groovy/notSupported.out[]
    ----
    
    To prevent the task from failing, convert the referenced top-level method to a static method within a class:
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top