Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for Parses (0.1 sec)

  1. pkg/apis/core/types.go

    type ConfigMapNodeConfigSource struct {
    	// Namespace is the metadata.namespace of the referenced ConfigMap.
    	// This field is required in all cases.
    	Namespace string
    
    	// Name is the metadata.name of the referenced ConfigMap.
    	// This field is required in all cases.
    	Name string
    
    	// UID is the metadata.UID of the referenced ConfigMap.
    	// This field is forbidden in Node.Spec, and required in Node.Status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		var min, max uint64
    		if unsigned {
    			min, _ = constant.Uint64Val(n.Cases[0])
    			max, _ = constant.Uint64Val(n.Cases[len(n.Cases)-1])
    		} else {
    			mn, _ := constant.Int64Val(n.Cases[0])
    			mx, _ := constant.Int64Val(n.Cases[len(n.Cases)-1])
    			min = uint64(mn)
    			max = uint64(mx)
    		}
    		// Compare idx-min with max-min, to see if we can use the jump table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

    message ConfigMapNodeConfigSource {
      // Namespace is the metadata.namespace of the referenced ConfigMap.
      // This field is required in all cases.
      optional string namespace = 1;
    
      // Name is the metadata.name of the referenced ConfigMap.
      // This field is required in all cases.
      optional string name = 2;
    
      // UID is the metadata.UID of the referenced ConfigMap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Namespace is the metadata.namespace of the referenced ConfigMap.
    	// This field is required in all cases.
    	Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
    
    	// Name is the metadata.name of the referenced ConfigMap.
    	// This field is required in all cases.
    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    	// UID is the metadata.UID of the referenced ConfigMap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top