Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for DoesNotExist (0.61 sec)

  1. operator/cmd/mesh/manifest-generate_test.go

        apiVersions: ["v1"]
        resources: ["pods"]
      failurePolicy: Fail
      admissionReviewVersions: ["v1beta1", "v1"]
      namespaceSelector:
        matchExpressions:
        - key: istio-injection
          operator: DoesNotExist
        - key: istio.io/rev
          operator: In
          values:
          - canary
      objectSelector:
        matchExpressions:
        - key: "sidecar.istio.io/inject"
          operator: NotIn
          values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	Key string
    	// Represents a key's relationship to a set of values.
    	// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
    	Operator NodeSelectorOperator
    	// An array of string values. If the operator is In or NotIn,
    	// the values array must be non-empty. If the operator is Exists or DoesNotExist,
    	// the values array must be empty. If the operator is Gt or Lt, the values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			errors: []string{"failed rule"},
    		},
    		{name: "matchExpressions - 'values' may not be specified when 'operator' is 'Exists' or 'DoesNotExist'",
    			obj: map[string]interface{}{
    				"matchExpressions": []interface{}{
    					map[string]interface{}{
    						"key":      "tier",
    						"operator": "Exists",
    						"values":   []interface{}{"somevalue"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

        matchExpressions:
        - key: istio-injection
          operator: DoesNotExist
        - key: istio.io/rev
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: In
          values:
          - "true"
        - key: istio.io/rev
          operator: DoesNotExist
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
    	Operator NodeSelectorOperator `json:"operator" protobuf:"bytes,2,opt,name=operator,casttype=NodeSelectorOperator"`
    	// An array of string values. If the operator is In or NotIn,
    	// the values array must be non-empty. If the operator is Exists or DoesNotExist,
    	// the values array must be empty. If the operator is Gt or Lt, the 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. common-protos/k8s.io/api/core/v1/generated.proto

      // Represents a key's relationship to a set of values.
      // Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
      optional string operator = 2;
    
      // An array of string values. If the operator is In or NotIn,
      // the values array must be non-empty. If the operator is Exists or DoesNotExist,
      // the values array must be empty. If the operator is Gt or Lt, the values
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"operator": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "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. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "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. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    // querying the original name instead of an error encountered
    // querying a generated name.
    func TestErrorForOriginalNameWhenSearching(t *testing.T) {
    	defer dnsWaitGroup.Wait()
    
    	const fqdn = "doesnotexist.domain"
    
    	conf, err := newResolvConfTest()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer conf.teardown()
    
    	if err := conf.writeAndUpdate([]string{"search servfail"}); err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top