Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for ANDed (0.04 sec)

  1. common/scripts/metallb-native.yaml

                        label selector matches all objects. A null label selector matches
                        no objects.
                      properties:
                        matchExpressions:
                          description: matchExpressions is a list of label selector requirements.
                            The requirements are ANDed.
                          items:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. pkg/workloadapi/security/authorization.proto

      // Conditions within a rule are AND-ed (e.g. ALL conditions must be true)
      repeated Match matches = 2;
    }
    
    message Match {
      // Values of specific type are ORed
      // If multiple types are set, they are ANDed
    
      repeated StringMatch namespaces = 1;
      repeated StringMatch not_namespaces = 2;
    
      repeated StringMatch principals = 3;
      repeated StringMatch not_principals = 4;
    
      repeated Address source_ips = 5;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. samples/security/spire/spire-quickstart.yaml

                    properties:
                      matchExpressions:
                        description: matchExpressions is a list of label selector requirements.
                          The requirements are ANDed.
                        items:
                          description: A label selector requirement is a selector that
                            contains values, a key, and an operator that relates the key
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    	for _, t := range terms {
    		var termNodeNames sets.Set[string]
    		for _, r := range t.MatchFields {
    			if r.Key == metav1.ObjectNameField && r.Operator == v1.NodeSelectorOpIn {
    				// The requirements represent ANDed constraints, and so we need to
    				// find the intersection of nodes.
    				s := sets.New(r.Values...)
    				if termNodeNames == nil {
    					termNodeNames = s
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    			},
    			labels: map[string]string{
    				"foo": "bar",
    			},
    			wantPreFilterStatus: framework.NewStatus(framework.Skip),
    			runPreFilter:        true,
    		},
    		{
    			name: "Pod with multiple matchExpressions ANDed that matches the existing node",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Affinity: &v1.Affinity{
    						NodeAffinity: &v1.NodeAffinity{
    							RequiredDuringSchedulingIgnoredDuringExecution: &v1.NodeSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  6. pilot/pkg/security/authn/policy_applier.go

    		return nil
    	}
    
    	providers := map[string]*envoy_jwt.JwtProvider{}
    	// Each element of innerAndList is the requirement for each provider, in the form of
    	// {provider OR `allow_missing`}
    	// This list will be ANDed (if have more than one provider) for the final requirement.
    	innerAndList := []*envoy_jwt.JwtRequirement{}
    
    	// This is an (or) list for all providers. This will be OR with the innerAndList above so
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"matchLabels":      "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // operator is "In", and the values array contains only "value". The requirements are ANDed.
      // +optional
      map<string, string> matchLabels = 1;
    
      // matchExpressions is a list of label selector requirements. The requirements are ANDed.
      // +optional
      repeated LabelSelectorRequirement matchExpressions = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // operator is "In", and the values array contains only "value". The requirements are ANDed.
      // +optional
      map<string, string> matchLabels = 1;
    
      // matchExpressions is a list of label selector requirements. The requirements are ANDed.
      // +optional
      // +listType=atomic
      repeated LabelSelectorRequirement matchExpressions = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                    matchExpressions:
                                      description: matchExpressions is a list of label
                                        selector requirements. The requirements are ANDed.
                                      items:
                                        description: A label selector requirement is a
                                          selector that contains values, a key, and an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
Back to top