Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for VALUE1 (0.15 sec)

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

        }
    
        def "equals should return false for 2 containers with different provider instances that return different values"() {
            Property<String> testProperty1 = new DefaultProperty<>(Mock(PropertyHost), String).convention("value1")
            Property<String> testProperty2 = new DefaultProperty<>(Mock(PropertyHost), String).convention("value2")
            def testAttribute = Attribute.of("test", String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

      } {attr2 = 32 : i64, tf_executor.attr1 = "value1"}
    
    // CHECK:      tf_executor.graph {
    // CHECK-NEXT:    tf_executor.fetch %{{.*}} : tensor<*xf32> {attr3 = 32 : i64, tf_executor.attr_fetch = "some_value"}
    // CHECK-NEXT: } {attr2 = 32 : i64, tf_executor.attr1 = "value1"}
      func.return %result : tensor<*xf32>
    }
    
    // CHECK-LABEL: func @simpleIsland(%{{.*}}: tensor<*xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    				resource1: newContainerAllocateResponse(
    					withDevices(map[string]string{"/dev/r1": "/dev/r1"}),
    					withMounts(map[string]string{"/home/lib1": "/home/lib1"}),
    					withEnvs(map[string]string{"ENV1": "VALUE1"}),
    					withCDIDevices("vendor1.com/class1=device1", "vendor2.com/class2=device2"),
    				),
    			},
    			expected: &DeviceRunContainerOptions{
    				Devices: []kubecontainer.DeviceInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/encoding/asn1/asn1.go

    	// encoded differently) and then every varint is a single byte long.
    	s = make([]int, len(bytes)+1)
    
    	// The first varint is 40*value1 + value2:
    	// According to this packing, value1 can take the values 0, 1 and 2 only.
    	// When value1 = 0 or value1 = 1, then value2 is <= 39. When value1 = 2,
    	// then there are no restrictions on value2.
    	v, offset, err := parseBase128Int(bytes, 0)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/helper/helpers_test.go

    		},
    		{
    			name: "key existence in terms with all keys specified",
    			reqs: []v1.NodeSelectorRequirement{
    				{
    					Key:      "key1",
    					Operator: v1.NodeSelectorOpIn,
    					Values:   []string{"test-value1"},
    				},
    				{
    					Key:      "key2",
    					Operator: v1.NodeSelectorOpIn,
    					Values:   []string{"test-value2"},
    				},
    			},
    			terms: []v1.NodeSelectorTerm{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableMap.java

        }
    
        static final class DuplicateKey {
          private final Object key;
          private final Object value1;
          private final Object value2;
    
          DuplicateKey(Object key, Object value1, Object value2) {
            this.key = key;
            this.value1 = value1;
            this.value2 = value2;
          }
    
          IllegalArgumentException exception() {
            return new IllegalArgumentException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/mlrt/parallelization.mlir

      %value1 = "tf.LookupTableFindV2"(%handle, %key, %default) {device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<!tf_type.resource>, tensor<!tf_type.string>, tensor<i64>) -> tensor<i64>
      func.return %value0, %value1 : tensor<i64>, tensor<i64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. pkg/kube/inject/webhook_test.go

    			// path will be considered using slash as separator
    			name: "no-predefined-kv-with-values-contain-ENV-separator",
    			in:   "/inject/rootpage1/value1/rootpage2/:ENV:abcd=efgh",
    			want: map[string]string{"ROOTPAGE1": "value1", "ROOTPAGE2": ":ENV:abcd=efgh"},
    		},
    		{
    			// this is to test the path following :ENV: format, but two variables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  9. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       * testing and equals testing.
       *
       * @since 17.0
       */
      protected final <T> void setDistinctValues(Class<T> type, T value1, T value2) {
        tester.setDistinctValues(type, value1, value2);
      }
    
      /** Specifies that classes that satisfy the given predicate aren't tested for sanity. */
      protected final void ignoreClasses(Predicate<? super Class<?>> condition) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            noExceptionThrown()
        }
    
        def "nested iterable beans can have the same names"() {
            def task = project.tasks.create("myTask", TaskWithNestedObject)
            task.nested = [new NamedNestedBean('name', 'value1'), new NamedNestedBean('name', 'value2')]
    
            when:
            visitProperties(task)
    
            then:
            _ * visitor.visitNested() >> true
            1 * visitor.visitInputProperty('nested.name$0', _, false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top