Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,549 for operator_ (0.23 sec)

  1. plugin/pkg/admission/defaulttolerationseconds/admission_test.go

    					Tolerations: []api.Toleration{
    						{
    							Key:               v1.TaintNodeNotReady,
    							Operator:          api.TolerationOpExists,
    							Effect:            api.TaintEffectNoExecute,
    							TolerationSeconds: &defaultTolerationSeconds,
    						},
    						{
    							Key:               v1.TaintNodeUnreachable,
    							Operator:          api.TolerationOpExists,
    							Effect:            api.TaintEffectNoExecute,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  2. manifests/charts/default/templates/mutatingwebhook.yaml

          operator: DoesNotExist
        - key: istio.io/rev
          operator: DoesNotExist
        - key: "kubernetes.io/metadata.name"
          operator: "NotIn"
          values: ["kube-system","kube-public","kube-node-lease","local-path-storage"]
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: DoesNotExist
        - key: istio.io/rev
          operator: DoesNotExist
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/toleration_test.go

    			toleration: Toleration{
    				Key:      "foo",
    				Operator: TolerationOpEqual,
    				Value:    "bar",
    				Effect:   TaintEffectNoSchedule,
    			},
    			taint: Taint{
    				Key:    "foo",
    				Value:  "bar",
    				Effect: TaintEffectNoSchedule,
    			},
    			expectTolerated: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:21:42 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_value_test.go

    // limitations under the License.
    
    package translate
    
    import (
    	"testing"
    
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/apis/istio"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    func TestValueToProto(t *testing.T) {
    	tests := []struct {
    		desc      string
    		valueYAML string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue13480.go

    	var s S
    	var m M
    	var f F
    
    	_ = s == S(nil) // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	_ = S(nil) == s // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	switch s {
    	case S(nil): // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	}
    
    	_ = m == M(nil) // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: DoesNotExist
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
        - key: istio.io/rev
          operator: In
          values:
          {{- if (eq .Values.revision "") }}
          - "default"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: DoesNotExist
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
        - key: istio.io/rev
          operator: In
          values:
          {{- if (eq .Values.revision "") }}
          - "default"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. samples/ambient-argo/tag-chart/templates/mutatingwebhooks.yaml

        matchExpressions:
        - key: istio.io/rev
          operator: DoesNotExist
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
        - key: istio.io/rev
          operator: In
          values:
          - "{{ $tagName }}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. pkg/apis/core/toleration_test.go

    				Operator: "Exists",
    				Value:    "bar",
    				Effect:   TaintEffectNoSchedule,
    			},
    			tolerationToMatch: &Toleration{
    				Key:      "foo",
    				Operator: "different-operator",
    				Value:    "bar",
    				Effect:   TaintEffectNoSchedule,
    			},
    			expectMatch: false,
    		},
    		{
    			description: "two taints with the different value cannot match",
    			toleration: &Toleration{
    				Key:      "foo",
    				Operator: "Exists",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 01:44:27 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/scanner.go

    	bad       bool     // valid if tok is _Literal, true if a syntax error occurred, lit may be malformed
    	kind      LitKind  // valid if tok is _Literal
    	op        Operator // valid if tok is _Operator, _Star, _AssignOp, or _IncOp
    	prec      int      // valid if tok is _Operator, _Star, _AssignOp, or _IncOp
    }
    
    func (s *scanner) init(src io.Reader, errh func(line, col uint, msg string), mode uint) {
    	s.source.init(src, errh)
    	s.mode = mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
Back to top