Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MapType (0.17 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

      // resources associated with PVC.
      //
      // This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.
      // +featureGate=RecoverVolumeExpansionFailure
      // +mapType=granular
      // +optional
      map<string, string> allocatedResourceStatuses = 7;
    
      // currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Selector which must match a node's labels for the pod to be scheduled on that node.
      // More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 7;
    
      // ServiceAccountName is the name of the ServiceAccount to use to run this pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// resources associated with PVC.
    	//
    	// This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.
    	// +featureGate=RecoverVolumeExpansionFailure
    	// +mapType=granular
    	// +optional
    	AllocatedResourceStatuses map[ResourceName]ClaimResourceStatus `json:"allocatedResourceStatuses,omitempty" protobuf:"bytes,7,rep,name=allocatedResourceStatuses"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. doc/go_spec.html

    TypeName  = identifier | QualifiedIdent .
    TypeArgs  = "[" TypeList [ "," ] "]" .
    TypeList  = Type { "," Type } .
    TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
                SliceType | MapType | ChannelType .
    </pre>
    
    <p>
    The language <a href="#Predeclared_identifiers">predeclares</a> certain type names.
    Others are introduced with <a href="#Type_declarations">type declarations</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	_ = types.NewPtr(types.Types[types.TINT64])                             // *int64
    	_ = types.NewPtr(types.ErrorType)                                       // *error
    	_ = types.NewPtr(reflectdata.MapType())                                 // *runtime.hmap
    	_ = types.NewPtr(deferstruct())                                         // *runtime._defer
    	types.NewPtrCacheEnabled = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// resources associated with PVC.
    	//
    	// This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.
    	// +featureGate=RecoverVolumeExpansionFailure
    	// +mapType=granular
    	// +optional
    	AllocatedResourceStatuses map[ResourceName]ClaimResourceStatus
    	// currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top