Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for value$ (0.13 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/parallelization.mlir

    
      %keys = "tf.Const"() {value = dense<["a", "b", "c", "d"]> : tensor<4x!tf_type.string>} : () -> tensor<4x!tf_type.string>
      %values = "tf.Const"() {value = dense<[1, 2, 3, 4]> : tensor<4xi64>} : () -> tensor<4xi64>
      "tf.LookupTableImportV2"(%handle, %keys, %values) {device = ""} : (tensor<!tf_type.resource>, tensor<4x!tf_type.string>, tensor<4xi64>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

       public:
        Iterator(const ParamGeneratorInterface<T>* base, T value, int index,
                 IncrementT step)
            : base_(base), value_(value), index_(index), step_(step) {}
        virtual ~Iterator() {}
    
        virtual const ParamGeneratorInterface<T>* BaseGenerator() const {
          return base_;
        }
        virtual void Advance() {
          value_ = value_ + step_;
          index_++;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

    import java.util.Map;
    import javax.annotation.CheckForNull;
    
    /**
     * A {@link CharEscaper} that uses an array to quickly look up replacement characters for a given
     * {@code char} value. An additional safe range is provided that determines whether {@code char}
     * values without specific replacements are to be considered safe and left unescaped or should be
     * escaped in a general way.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    `(read-only) File libsDir`::
    The directory to generate libraries into. Default value: `layout.buildDirectory.dir(__libsDirName__)`
    
    `String distsDirName`::
    The name of the directory to generate distributions into, relative to the build directory. Default value: `distributions`
    
    `(read-only) File distsDir`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. src/net/http/request_test.go

    		"field1":   []string{"value1"},
    		"field2":   []string{"initial-value2", "value2"},
    	}
    	if !reflect.DeepEqual(req.Form, wantForm) {
    		t.Fatalf("req.Form = %v, want %v", req.Form, wantForm)
    	}
    
    	wantPostForm := url.Values{
    		"field1": []string{"value1"},
    		"field2": []string{"value2"},
    	}
    	if !reflect.DeepEqual(req.PostForm, wantPostForm) {
    		t.Fatalf("req.PostForm = %v, want %v", req.PostForm, wantPostForm)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        Note: if the entries in `value` are all the same, we can just keep one copy.
          In other words, the following two lines are effectively the same.
          %tensor = tfrt_fallback_async.const_string_tensor {shape = [1, 2], value = ["string", "string"]}
          %tensor = tfrt_fallback_async.const_string_tensor {shape = [1, 2], value = ["string"]}
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. operator/pkg/name/name_test.go

    		want2 string
    	}{
    		{
    			name: "consolidate from manifest map",
    			mm: ManifestMap{
    				"key1": []string{"value1", "value2"},
    				"key2": []string{"value2", "value3"},
    			},
    			want1: "value1\n---\nvalue2\n---\nvalue2\n---\nvalue3\n---\n",
    			want2: "value2\n---\nvalue3\n---\nvalue1\n---\nvalue2\n---\n",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			got := tt.mm.String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 14:08:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

      /**
       * Sets two distinct values for {@code type}. These values can be used for both null pointer
       * 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. */
    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. pkg/volume/projected/projected_test.go

    					Name:      testPodName,
    					Namespace: testNamespace,
    					Labels: map[string]string{
    						"key1": "value1",
    						"key2": "value2"},
    					UID: testPodUID},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"labels": {Data: []byte("key1=\"value1\"\nkey2=\"value2\""), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "annotations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
Back to top