Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 180 for MatchFields (0.2 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    		*out = make([]NodeSelectorRequirement, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.MatchFields != nil {
    		in, out := &in.MatchFields, &out.MatchFields
    		*out = make([]NodeSelectorRequirement, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		*out = make([]NodeSelectorRequirement, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.MatchFields != nil {
    		in, out := &in.MatchFields, &out.MatchFields
    		*out = make([]NodeSelectorRequirement, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.11.md

    ### SIG Scheduling
    
    * Schedule DaemonSet Pods in scheduler, rather than the Daemonset controller.
    ([#63223](https://github.com/kubernetes/kubernetes/pull/63223), [@k82cn](https://github.com/k82cn))
    * Added `MatchFields` to `NodeSelectorTerm`; in 1.11, it only supports `metadata.name`. ([#62002](https://github.com/kubernetes/kubernetes/pull/62002), [@k82cn](https://github.com/k82cn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.MatchExpressions = *(*[]core.NodeSelectorRequirement)(unsafe.Pointer(&in.MatchExpressions))
    	out.MatchFields = *(*[]core.NodeSelectorRequirement)(unsafe.Pointer(&in.MatchFields))
    	return nil
    }
    
    // Convert_v1_NodeSelectorTerm_To_core_NodeSelectorTerm is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// A list of node selector requirements by node's fields.
    	// +optional
    	// +listType=atomic
    	MatchFields []NodeSelectorRequirement `json:"matchFields,omitempty" protobuf:"bytes,2,rep,name=matchFields"`
    }
    
    // A node selector requirement is a selector that contains values, a key, and an operator
    // that relates the key and values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.MatchFields = append(m.MatchFields, NodeSelectorRequirement{})
    			if err := m.MatchFields[len(m.MatchFields)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
              },
              "type": "array"
            },
            "matchFields": {
              "description": "A list of node selector requirements by node's fields.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      repeated NodeSelectorRequirement matchExpressions = 1;
    
      // A list of node selector requirements by node's fields.
      // +optional
      repeated NodeSelectorRequirement matchFields = 2;
    }
    
    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    type NodeSelectorTerm struct {
    	// A list of node selector requirements by node's labels.
    	MatchExpressions []NodeSelectorRequirement
    	// A list of node selector requirements by node's fields.
    	MatchFields []NodeSelectorRequirement
    }
    
    // NodeSelectorRequirement is a selector that contains values, a key, and an operator
    // that relates the key and values.
    type NodeSelectorRequirement struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"matchExpressions": "A list of node selector requirements by node's labels.",
    	"matchFields":      "A list of node selector requirements by node's fields.",
    }
    
    func (NodeSelectorTerm) SwaggerDoc() map[string]string {
    	return map_NodeSelectorTerm
    }
    
    var map_NodeSpec = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top