Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 302 for 1e20 (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

          func.func @init_func_restore_op() -> () attributes {tf_saved_model.exported_names = ["restore"], tf_saved_model.initializer_type = "restore_op"} {
            %cst = "tf.Const"() {device = "", value = dense<[1.0, 2.0]> : tensor<2xf32>} : () -> tensor<2xf32>
            %0 = "tf.VarHandleOp"() {container = "", device = "/device:CPU:0", shared_name = "var_0"} : () -> tensor<!tf_type.resource<tensor<2xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/dependencies-notations.toml

    indirect.module = "g:b"
    indirect.version = "1.2"
    
    incremental.group = "group"
    incremental.name = "name"
    incremental.version.require = "[1.0, 2.0["
    incremental.version.prefer = "1.1"
    
    incremental2.module = "group:name"
    incremental2.version = { strictly = "[1.0, 2.0[", prefer = "1.5" }
    
    groovy-with-ref = { group = "org.codehaus.groovy", name = "groovy", version.ref = "groovy" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

                dependencies {
                    compile ':name1:1.0'
                    compile ':name1:1.0'
                    compile ':name2:[1.0, 2.0]'
                    compile ':name3:1.0-SNAPSHOT'
                    compile 'group1::1.0'
                    compile 'group2::[1.0, 2.0]'
                    compile 'group3::1.0-SNAPSHOT'
                    compile 'group:name'
                }
            """
            failedResolve.prepare()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

              public Integer load(Integer key) throws Exception {
                return i++;
              }
            };
    
        LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder().build(loader);
    
        cache.put(10, 20);
    
        Map<Integer, Integer> map = cache.getAll(ImmutableList.of(10, 20, 30, 54, 443, 1));
    
        assertEquals(Integer.valueOf(20), map.get(10));
        assertEquals(Integer.valueOf(0), map.get(20));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 15.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

              public Integer load(Integer key) throws Exception {
                return i++;
              }
            };
    
        LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder().build(loader);
    
        cache.put(10, 20);
    
        Map<Integer, Integer> map = cache.getAll(ImmutableList.of(10, 20, 30, 54, 443, 1));
    
        assertEquals(Integer.valueOf(20), map.get(10));
        assertEquals(Integer.valueOf(0), map.get(20));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 15K bytes
    - Viewed (0)
  6. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/dependency-notations.toml

    indirect.module = "g:b"
    indirect.version = "1.2"
    
    incremental.group = "group"
    incremental.name = "name"
    incremental.version.prefer = "1.1"
    incremental.version.require = "[1.0, 2.0["
    
    incremental2.module = "group:name"
    incremental2.version = { strictly = "[1.0, 2.0[", prefer = "1.5" }
    
    groovy-with-ref = { group = "org.codehaus.groovy", name = "groovy", version.ref = "groovy" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. test/fixedbugs/issue15281.go

    package main
    
    import "runtime"
    
    func main() {
    	{
    		x := inuse()
    		c := make(chan []byte, 10)
    		c <- make([]byte, 10<<20)
    		close(c)
    		f1(c, x)
    	}
    	{
    		x := inuse()
    		c := make(chan []byte, 10)
    		c <- make([]byte, 10<<20)
    		close(c)
    		f2(c, x)
    	}
    }
    
    func f1(c chan []byte, start int64) {
    	for x := range c {
    		if delta := inuse() - start; delta < 9<<20 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 09:45:44 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue22662.go

    //line :1
    	check("??", 1) // no file specified
    //line foo.go:1
    	check("foo.go", 1)
    //line bar.go:10:20
    	check("bar.go", 10)
    //line :11:22
    	check("bar.go", 11) // no file, but column specified => keep old filename
    
    /*-style line directives */
    /*line :1*/ check("??", 1) // no file specified
    /*line foo.go:1*/ check("foo.go", 1)
    /*line bar.go:10:20*/ check("bar.go", 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:32:03 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/optimize_batch_matmul.mlir

    }
    
    // CHECK-LABEL: Batchmatmul2Fullyconnected
    // CHECK-NOT: "tfl.batch_matmul"
    func.func @Batchmatmul2Fullyconnected(%arg0: tensor<4x128x2xf32>) -> (tensor<4x128x1xf32>) {
      %0 = arith.constant dense<[[1.0], [2.0]]> : tensor<2x1xf32>
      %1 = "tfl.batch_matmul"(%arg0, %0) {adj_x = false, adj_y = false, asymmetric_quantize_inputs = false} : (tensor<4x128x2xf32>, tensor<2x1xf32>) -> tensor<4x128x1xf32>
      func.return %1 : tensor<4x128x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/route/route_openbsd.go

    	if m.Version == 0 {
    		b[2] = syscall.RTM_VERSION
    	} else {
    		b[2] = byte(m.Version)
    	}
    	b[3] = byte(m.Type)
    	nativeEndian.PutUint16(b[4:6], uint16(sizeofRtMsghdr))
    	nativeEndian.PutUint32(b[16:20], uint32(m.Flags))
    	nativeEndian.PutUint16(b[6:8], uint16(m.Index))
    	nativeEndian.PutUint32(b[24:28], uint32(m.ID))
    	nativeEndian.PutUint32(b[28:32], uint32(m.Seq))
    	attrs, err := marshalAddrs(b[sizeofRtMsghdr:], m.Addrs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top