Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 189 for notin (0.07 sec)

  1. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    	expectMatch(t, "", Set{"x": "y"})
    	expectMatch(t, "x=y", Set{"x": "y"})
    	expectMatch(t, "x=y,z=w", Set{"x": "y", "z": "w"})
    	expectMatch(t, "x!=y,z!=w", Set{"x": "z", "z": "a"})
    	expectMatch(t, "notin=in", Set{"notin": "in"}) // in and notin in exactMatch
    	expectNoMatch(t, "x=y", Set{"x": "z"})
    	expectNoMatch(t, "x=y,z=w", Set{"x": "w", "z": "w"})
    	expectNoMatch(t, "x!=y,z!=w", Set{"x": "z", "z": "w"})
    
    	fieldset := Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          status: "True"
          type: Programmed
        - lastTransitionTime: fake
          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: slctr-expr-notin-yes
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
      - attachedRoutes: 1
        conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/labels/labels_test.go

    			selector: "x=a||y=b",
    			labels:   map[string]string{},
    			valid:    false,
    		},
    		{
    			selector: "x in (y)",
    			labels:   map[string]string{},
    			valid:    false,
    		},
    		{
    			selector: "x notin (y)",
    			labels:   map[string]string{},
    			valid:    false,
    		},
    		{
    			selector: "x y",
    			labels:   map[string]string{},
    			valid:    false,
    		},
    	}
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  4. samples/security/spire/spire-quickstart.yaml

                                a set of values. Valid operators are In, NotIn, Exists
                                and DoesNotExist.
                              type: string
                            values:
                              description: values is an array of string values. If the
                                operator is In or NotIn, the values array must be non-empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  5. pkg/kube/namespace/filter.go

    		var op selection.Operator
    		switch metav1.LabelSelectorOperator(expr.Operator) {
    		case metav1.LabelSelectorOpIn:
    			op = selection.In
    		case metav1.LabelSelectorOpNotIn:
    			op = selection.NotIn
    		case metav1.LabelSelectorOpExists:
    			op = selection.Exists
    		case metav1.LabelSelectorOpDoesNotExist:
    			op = selection.DoesNotExist
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/helper/helpers.go

    	selector := labels.NewSelector()
    	var op selection.Operator
    	switch ssr.Operator {
    	case v1.ScopeSelectorOpIn:
    		op = selection.In
    	case v1.ScopeSelectorOpNotIn:
    		op = selection.NotIn
    	case v1.ScopeSelectorOpExists:
    		op = selection.Exists
    	case v1.ScopeSelectorOpDoesNotExist:
    		op = selection.DoesNotExist
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    	switch sr.Operator {
    	case metav1.LabelSelectorOpIn, metav1.LabelSelectorOpNotIn:
    		if len(sr.Values) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath.Child("values"), "must be specified when `operator` is 'In' or 'NotIn'"))
    		}
    	case metav1.LabelSelectorOpExists, metav1.LabelSelectorOpDoesNotExist:
    		if len(sr.Values) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // associated with "runlevel" of "0" or "1";  you will set the selector as
      // follows:
      // "namespaceSelector": {
      //   "matchExpressions": [
      //     {
      //       "key": "runlevel",
      //       "operator": "NotIn",
      //       "values": [
      //         "0",
      //         "1"
      //       ]
      //     }
      //   ]
      // }
      //
      // If instead you want to only run the webhook on any objects whose
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // associated with "runlevel" of "0" or "1";  you will set the selector as
      // follows:
      // "namespaceSelector": {
      //   "matchExpressions": [
      //     {
      //       "key": "runlevel",
      //       "operator": "NotIn",
      //       "values": [
      //         "0",
      //         "1"
      //       ]
      //     }
      //   ]
      // }
      //
      // If instead you want to only run the webhook on any objects whose
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. pkg/controller/job/pod_failure_policy_test.go

    									ExitCode: 2,
    								},
    							},
    						},
    					},
    				},
    			},
    			wantCountFailed: true,
    			wantAction:      nil,
    		},
    		"pod failure policy with NotIn operator and value 0": {
    			podFailurePolicy: &batch.PodFailurePolicy{
    				Rules: []batch.PodFailurePolicyRule{
    					{
    						Action: batch.PodFailurePolicyActionFailJob,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top