Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for value$ (0.16 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			{key: "name", value: "node1"}: 1,
    			{key: "name", value: "node2"}: 1,
    		},
    		affinityCounts: topologyToMatchedTermCount{
    			{key: "name", value: "nodeA"}: 1,
    			{key: "name", value: "nodeC"}: 2,
    		},
    		antiAffinityCounts: topologyToMatchedTermCount{
    			{key: "name", value: "nodeN"}: 3,
    			{key: "name", value: "nodeM"}: 1,
    		},
    	}
    
    	clone := source.Clone()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                    return parameters.value.orNull
                }
            }
    
            def vsResult = providers.of(IdentitySource) {
                parameters.value = providers.systemProperty("property")
            }
    
            System.setProperty("property", "someValue")
    
            println("configuration value = \${vsResult.getOrElse("NO VALUE")}")
    
            tasks.register("echo") {
                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple4.java

         * インスタンスを構築します。
         *
         * @param value1
         *            1番目の値
         * @param value2
         *            2番目の値
         * @param value3
         *            3番目の値
         * @param value4
         *            4番目の値
         */
        public Tuple4(final T1 value1, final T2 value2, final T3 value3, final T4 value4) {
            this.value1 = value1;
            this.value2 = value2;
            this.value3 = value3;
            this.value4 = value4;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu.go

    		}
    		i = indexByte(field, '=')
    		if i < 0 {
    			print("GODEBUG: no value specified for \"", field, "\"\n")
    			continue
    		}
    		key, value := field[4:i], field[i+1:] // e.g. "SSE2", "on"
    
    		var enable bool
    		switch value {
    		case "on":
    			enable = true
    		case "off":
    			enable = false
    		default:
    			print("GODEBUG: value \"", value, "\" not supported for cpu option \"", key, "\"\n")
    			continue field
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

            private final String value;
    
            public NamedBean(String name, String value) {
                this.name = name;
                this.value = value;
            }
    
            @Override
            public String getName() {
                return name;
            }
    
            @Input
            public String getValue() {
                return value;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            then:
            output.contains """
    Options
         --valueA     descA
    
         --no-valueA     Disables option --valueA.
    
         --valueB     descB
    
         --no-valueB     Disables option --valueB.
    
         --valueC     descC
    
         --no-valueC     Disables option --valueC."""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. src/text/template/doc.go

    		Y is a func-valued field, map entry, or the like.
    		The first argument must be the result of an evaluation
    		that yields a value of function type (as distinct from
    		a predefined function such as print). The function must
    		return either one or two result values, the second of which
    		is of type error. If the arguments don't match the function
    		or the returned error value is non-nil, execution stops.
    	html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      return s;
    }
    
    class MlirTensor : public TracingTensorHandle {
     public:
      explicit MlirTensor(Value value)
          : TracingTensorHandle(kMlir), value_(value) {}
    
      tensorflow::DataType DataType() const override {
        tensorflow::DataType type;
        Status s = ConvertToDataType(value_.getType(), &type);
        if (!s.ok()) {
          return tensorflow::DT_INVALID;
        }
        return type;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "requiredValue set when expression is set",
    			in: []api.ClaimValidationRule{
    				{Expression: "claims.foo == 'bar'", RequiredValue: "value"},
    			},
    			structuredAuthnFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

        }
    
        def "replaceAll() uses reference equality for non-primitives"() {
            def value1 = [1]
            def value2 = [1]
    
            def map = getMapUnderTestToWrite(value: value1)
            when:
            map.replaceAll { k, v ->
                return value2
            }
    
            then:
            1 * listener.onChange("value", value2)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top