Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for mapTypes (0.36 sec)

  1. doc/go_spec.html

    implements the interface.
    </p>
    
    <h3 id="Map_types">Map types</h3>
    
    <p>
    A map is an unordered group of elements of one type, called the
    element type, indexed by a set of unique <i>keys</i> of another type,
    called the key type.
    The value of an uninitialized map is <code>nil</code>.
    </p>
    
    <pre class="ebnf">
    MapType     = "map" "[" KeyType "]" ElementType .
    KeyType     = Type .
    </pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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