Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,549 for operator_ (0.2 sec)

  1. manifests/charts/gateways/istio-egress/templates/_affinity.tpl

            - key: kubernetes.io/arch
              operator: In
              values:
            {{- range $key, $val := .global.arch }}
              {{- if gt ($val | int) 0 }}
              - {{ $key | quote }}
              {{- end }}
            {{- end }}
            {{- end }}
            {{- range $key, $val := $nodeSelector }}
            - key: {{ $key }}
              operator: In
              values:
              - {{ $val | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

    metadata:
      name: {{ template "name" . }}
      labels:
        app: {{ template "name" . }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: {{ template "name" . }}
    subjects:
    - kind: ServiceAccount
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/values.yaml

      watchedNamespaces: istio-system
      waitForResourcesTimeout: 300s
    
      # Used for helm2 to add the CRDs to templates.
      enableCRDTemplates: false
    
      # revision for the operator resources
      revision: ""
    
      # The number of old ReplicaSets to retain in operator deployment
      deploymentHistory: 10
    
      # Operator resource defaults
      operator:
        monitoring:
          host: 127.0.0.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

     *
     * @see DependencyModifier
     * @since 8.0
     */
    operator fun <D : ModuleDependency> DependencyModifier.invoke(dependency: D): D = modify(dependency)
    
    
    /**
     * Modifies a dependency to select the variant of the given module.
     *
     * @see DependencyModifier
     * @since 8.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/internal/types/testdata/spec/comparisons.go

    	_ = c == nil
    
    	_ = nil /* ERROR "operator < not defined on untyped nil" */ < nil
    	_ = b < b
    	_ = a /* ERROR "operator < not defined on array" */ < a
    	_ = l /* ERROR "operator < not defined on slice" */ < l
    	_ = s /* ERROR "operator < not defined on struct" */ < s
    	_ = p /* ERROR "operator < not defined on pointer" */ < p
    	_ = f /* ERROR "operator < not defined on func" */ < f
    	_ = i /* ERROR "operator < not defined on interface" */ < i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/extendedresourcetoleration/admission_test.go

    					},
    					Tolerations: []core.Toleration{
    						{
    							Key:      "foo",
    							Operator: core.TolerationOpEqual,
    							Value:    "bar",
    							Effect:   core.TaintEffectNoSchedule,
    						},
    						{
    							Key:      extendedResource1,
    							Operator: core.TolerationOpExists,
    							Effect:   core.TaintEffectNoSchedule,
    						},
    					},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 10.3K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers_test.go

    				{
    					Signal:   evictionapi.SignalAllocatableMemoryAvailable,
    					Operator: evictionapi.OpLessThan,
    					Value: evictionapi.ThresholdValue{
    						Quantity: quantityMustParse("150Mi"),
    					},
    					MinReclaim: &evictionapi.ThresholdValue{
    						Quantity: quantityMustParse("0"),
    					},
    				},
    				{
    					Signal:   evictionapi.SignalMemoryAvailable,
    					Operator: evictionapi.OpLessThan,
    					Value: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compilation_cluster_signature.cc

      }
      bool operator()(const Tensor& arg, const TensorTypeAndShape& other) {
        return true;
      }
      bool operator()(const TensorTypeAndShape& arg, const Tensor& other) {
        return true;
      }
    };
    
    // Functor that incrementally computes a Signature's hash given its current hash
    // and one of its args.
    struct SignatureHashCombiner {
      explicit SignatureHashCombiner(const uint64 h) : h(h) {}
      uint64 h;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    		st.advance(1)
    	}
    }
    
    // An operator is the demangled name, and the number of arguments it
    // takes in an expression.
    type operator struct {
    	name string
    	args int
    	prec precedence
    }
    
    // The operators map maps the mangled operator names to information
    // about them.
    var operators = map[string]operator{
    	"aN": {"&=", 2, precAssign},
    	"aS": {"=", 2, precAssign},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top