Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for A1value (0.22 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				// Invalid value: "x y"
    				invalid("spec", "versions[2]", "schema", "openAPIV3Schema", "properties[embedded]", "properties[metadata]", "default"),
    				// Invalid value: "%": kind: Invalid value: "%"
    				invalid("spec", "versions[2]", "schema", "openAPIV3Schema", "properties[embedded]", "properties[kind]", "default"),
    
    				// Invalid value: wrongly typed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    		}
    		for idx, value := range service.Spec.LoadBalancerSourceRanges {
    			// Note: due to a historical accident around transition from the
    			// annotation value, these values are allowed to be space-padded.
    			value = strings.TrimSpace(value)
    			allErrs = append(allErrs, validation.IsValidCIDR(fieldPath.Index(idx), value)...)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
Back to top