Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for mapType (0.15 sec)

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

    	}
    	if v.ForbiddenExtensions.XListType != nil {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("x-kubernetes-list-type"), "must be undefined to be structural"))
    	}
    	if v.ForbiddenExtensions.XMapType != nil {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("x-kubernetes-map-type"), "must be undefined to be structural"))
    	}
    	if len(v.ValidationExtensions.XValidations) > 0 && !opts.AllowNestedXValidations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	//      the default behaviour for all maps.
    	// 2) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic maps will be entirely replaced when updated.
    	// +optional
    	XMapType *string `json:"x-kubernetes-map-type,omitempty" protobuf:"bytes,43,opt,name=xKubernetesMapType"`
    
    	// x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/infer.go

    			if maxUntyped == nil {
    				maxUntyped = make(map[*TypeParam]Type)
    			}
    			max := maxUntyped[tpar]
    			if max == nil {
    				max = arg.typ
    			} else {
    				m := maxType(max, arg.typ)
    				if m == nil {
    					err.addf(arg, "mismatched types %s and %s (cannot infer %s)", max, arg.typ, tpar)
    					return nil
    				}
    				max = m
    			}
    			maxUntyped[tpar] = max
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	//      the default behaviour for all maps.
    	// 2) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic maps will be entirely replaced when updated.
    	// +optional
    	XMapType *string `json:"x-kubernetes-map-type,omitempty" protobuf:"bytes,43,opt,name=xKubernetesMapType"`
    
    	// x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  5. src/go/types/infer.go

    			if maxUntyped == nil {
    				maxUntyped = make(map[*TypeParam]Type)
    			}
    			max := maxUntyped[tpar]
    			if max == nil {
    				max = arg.typ
    			} else {
    				m := maxType(max, arg.typ)
    				if m == nil {
    					err.addf(arg, "mismatched types %s and %s (cannot infer %s)", max, arg.typ, tpar)
    					return nil
    				}
    				max = m
    			}
    			maxUntyped[tpar] = max
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top