Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for mapType (0.21 sec)

  1. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1,JSONSchemaProps,XListType
    API rule violation: names_match,k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1,JSONSchemaProps,XMapType
    API rule violation: names_match,k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1,JSONSchemaProps,XPreserveUnknownFields
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    					Type:     "array",
    					XMapType: strPtr("granular"),
    				},
    			},
    			expectedErrors: []validationMatch{
    				invalid("spec.validation.openAPIV3Schema.type"),
    			},
    		},
    		{
    			name: "unset type with map type extension (granular)",
    			input: apiextensions.CustomResourceValidation{
    				OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    					XMapType: strPtr("granular"),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. 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)
  4. src/syscall/zerrors_solaris_amd64.go

    	MAP_NORESERVE                 = 0x40
    	MAP_PRIVATE                   = 0x2
    	MAP_RENAME                    = 0x20
    	MAP_SHARED                    = 0x1
    	MAP_TEXT                      = 0x400
    	MAP_TYPE                      = 0xf
    	MCL_CURRENT                   = 0x1
    	MCL_FUTURE                    = 0x2
    	MSG_CTRUNC                    = 0x10
    	MSG_DONTROUTE                 = 0x4
    	MSG_DONTWAIT                  = 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	MAP_HUGE_SHIFT                              = 0x1a
    	MAP_PRIVATE                                 = 0x2
    	MAP_SHARED                                  = 0x1
    	MAP_SHARED_VALIDATE                         = 0x3
    	MAP_TYPE                                    = 0xf
    	MCAST_BLOCK_SOURCE                          = 0x2b
    	MCAST_EXCLUDE                               = 0x0
    	MCAST_INCLUDE                               = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top