Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,716 for value$ (0.11 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/ConfigureByMapActionTest.groovy

            when:
            action(prop: 'value').execute(obj)
    
            then:
            obj.prop == "value"
    
            when:
            action(method: 'value2').execute(obj)
    
            then:
            obj.prop == 'value2'
        }
    
        def canConfigureAndValidateObjectUsingMap() {
            given:
            Bean obj = new Bean()
    
            when:
            action(prop: 'value', ['foo']).execute(obj)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. manifests/charts/base/values.yaml

        imagePullSecrets: []
    
        # Used to locate istiod.
        istioNamespace: istio-system
    
        externalIstiod: false
        remotePilotAddress: ""
    
        # Platform where Istio is deployed. Possible values are: "openshift", "gcp".
        # An empty value means it is a vanilla Kubernetes distribution, therefore no special
        # treatment will be considered.
        platform: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/impl/string.h

      // This is the same as the default equality operator, which works because
      // we're interning all strings. It is specified here so we are explicit about
      // it. We're not saying "= default;" because we can't use C++20 features yet.
      bool operator==(const String& other) const { return value_ == other.value_; }
    
      const std::string& str() const { return *value_; }
    
      /** Absl hash function. */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/util/ConfigureUtilTest.groovy

            given:
            Bean obj = new Bean()
    
            when:
            ConfigureUtil.configureByMap(obj, prop: 'value')
    
            then:
            obj.prop == "value"
    
            when:
            ConfigureUtil.configureByMap(obj, method: 'value2')
    
            then:
            obj.prop == 'value2'
        }
    
        def canConfigureAndValidateObjectUsingMap() {
            given:
            Bean obj = new Bean()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/attributes_test.go

    	// test AddAnnotation
    	attr.AddAnnotation("foo.admission.k8s.io/key1", "value1")
    	attr.AddAnnotation("foo.admission.k8s.io/key2", "value2")
    	annotations := attr.getAnnotations(auditinternal.LevelMetadata)
    	assert.Equal(t, annotations["foo.admission.k8s.io/key1"], "value1")
    
    	// test overwrite
    	assert.Error(t, attr.AddAnnotation("foo.admission.k8s.io/key1", "value1-overwrite"),
    		"admission annotations should not be allowd to be overwritten")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 19:44:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-template-in-values.yaml.injected

            - name: ISTIO_META_CLUSTER_ID
              value: Kubernetes
            - name: ISTIO_META_NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: hello
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. manifests/charts/gateway/values.yaml

      # minimum number of available replicas to 1, you can update this value as follows:
      #
      # podDisruptionBudget:
      #   minAvailable: 1
      #
      # Or, to allow a maximum of 1 unavailable replica, you can set:
      #
      # podDisruptionBudget:
      #   maxUnavailable: 1
      #
      # You can also specify the `unhealthyPodEvictionPolicy` field, and the valid values are `IfHealthyBudget` and `AlwaysAllow`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-image-secrets-in-values.yaml.injected

            - name: ISTIO_META_CLUSTER_ID
              value: Kubernetes
            - name: ISTIO_META_NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_INTERCEPTION_MODE
              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: hello
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. test/fixedbugs/bug418.go

    // Issue 3044.
    // Multiple valued expressions in return lists.
    
    package p
    
    func Two() (a, b int)
    
    // F used to compile.
    func F() (x interface{}, y int) {
    	return Two(), 0 // ERROR "single-value context|2\-valued"
    }
    
    // Recursive used to trigger an internal compiler error.
    func Recursive() (x interface{}, y int) {
    	return Recursive(), 0 // ERROR "single-value context|2\-valued"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 557 bytes
    - Viewed (0)
  10. pkg/config/labels/instance_test.go

    			tags: labels.Instance{"istio./key": "value"},
    		},
    		{
    			name: "bad tag value 1",
    			tags: labels.Instance{"key": ".value"},
    		},
    		{
    			name: "bad tag value 2",
    			tags: labels.Instance{"key": "value_"},
    		},
    		{
    			name: "bad tag value 3",
    			tags: labels.Instance{"key": "value$"},
    		},
    	}
    	for _, c := range cases {
    		if got := c.tags.Validate(); (got == nil) != c.valid {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top