Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for NotSupported (0.2 sec)

  1. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    				claim.Spec.ResourceClassName = badName
    				return claim
    			}(),
    		},
    		"bad-mode": {
    			wantFailures: field.ErrorList{field.NotSupported(field.NewPath("spec", "allocationMode"), invalidMode, supportedAllocationModes.List())},
    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    				allErrs = append(allErrs, field.Invalid(valuePath.Index(i), vals[i], "for 'Gt', 'Lt' operators, the value must be an integer"))
    			}
    		}
    	default:
    		allErrs = append(allErrs, field.NotSupported(path.Child("operator"), op, validRequirementOperators))
    	}
    
    	for i := range vals {
    		if err := validateLabelValue(key, vals[i], valuePath.Index(i)); err != nil {
    			allErrs = append(allErrs, err)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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