Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 183 for 123456M (0.26 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/DefaultArtifactResolutionCacheTest.groovy

            cached.externalResourceMetaData.sha1 == sha1
    
            where:
            lastModified | contentType | etag   | sha1
            new Date()   | "something" | "etag" | TestHashCodes.hashCodeFrom(123456)
            null         | null        | null   | null
        }
    
        def "stores entry with no metadata"() {
            def artifactFile = tmp.createFile("artifact") << "content"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. test/typeparam/chansimp.dir/main.go

    		c1 <- 5
    		close(c1)
    	}()
    	go func() {
    		c2 <- 2
    		c2 <- 4
    		c2 <- 6
    		close(c2)
    	}()
    	ctx := context.Background()
    	got := a.ReadAll(ctx, a.Merge(ctx, c1, c2))
    	sort.Ints(got)
    	want := []int{1, 2, 3, 4, 5, 6}
    	if !a.SliceEqual(got, want) {
    		panic(fmt.Sprintf("Merge returned %v, want %v", got, want))
    	}
    }
    
    func TestFilter() {
    	c := make(chan int)
    	go func() {
    		c <- 1
    		c <- 2
    		c <- 3
    		close(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/simple.mlir

    // CHECK-NEXT:   name: "min_runtime_version",
    // CHECK-NEXT:   buffer: 6
    // CHECK-NEXT:   } ]
    // CHECK-NEXT:   signature_defs: [ ]
    // CHECK-NEXT: }
    
      %0 = "tfl.pseudo_const" () {value = dense<[[1, 2], [3, 4], [5, 6]]> : tensor<3x2xi32>} : () -> tensor<3x2xi32> loc("Const")
      %1 = "tfl.sub" (%arg0, %0) {fused_activation_function = "RELU6"} : (tensor<3x2xi32>, tensor<3x2xi32>) -> tensor<3x2xi32> loc("sub")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/simple_with_unconnected_control_nodes.mlir

    // CHECK-NEXT:   name: "min_runtime_version",
    // CHECK-NEXT:   buffer: 6
    // CHECK-NEXT:   } ],
    // CHECK-NEXT:   signature_defs: [ ]
    // CHECK-NEXT: }
    
      %0 = "tfl.pseudo_const" () {value = dense<[[1, 2], [3, 4], [5, 6]]> : tensor<3x2xi32>} : () -> tensor<3x2xi32> loc("Const")
      %1,%control_1 = tfl.control_node controls "tfl.sub" (%arg0, %0) {fused_activation_function = "RELU6"} : (tensor<3x2xi32>, tensor<3x2xi32>) -> tensor<3x2xi32> loc("sub")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 13:32:53 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. tensorflow/cc/ops/const_op_test.cc

      ExpectNodeEqual<double>(c.node(), {42.0, 42.0, 42.0, 42.0}, {2, 2});
    
      auto d = ops::Const(root, {"1", "2", "3", "4", "5", "6"}, {2, 3});
      TF_CHECK_OK(root.status());
      EXPECT_EQ(d.op().output_type(0), DT_STRING);
      ExpectNodeEqual<tstring>(d.node(), {"1", "2", "3", "4", "5", "6"}, {2, 3});
    }
    
    TEST(ConstOpTest, FromProto) {
      Scope root = Scope::NewRootScope();
      TensorProto proto;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 12 14:38:21 UTC 2019
    - 4.9K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server_linux_test.go

    			min:        1,     // avoid 0 default
    			expected:   67890 * ncores,
    		},
    		{
    			maxPerCore: 1, // ensure that Min is considered
    			min:        123456,
    			expected:   123456,
    		},
    		{
    			maxPerCore: 0, // leave system setting
    			min:        123456,
    			expected:   0,
    		},
    	}
    
    	for i, tc := range testCases {
    		cfg := proxyconfigapi.KubeProxyConntrackConfiguration{
    			Min:        ptr.To(tc.min),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/TopKSelectorTest.java

        for (List<Integer> list : Collections2.permutations(Ints.asList(1, 2, 3, 4, 5))) {
          TopKSelector<Integer> top = TopKSelector.least(4);
          top.offerAll(list);
          assertThat(top.topK()).containsExactly(1, 2, 3, 4).inOrder();
        }
      }
    
      public void testOfferedThreeK() {
        for (List<Integer> list : Collections2.permutations(Ints.asList(1, 2, 3, 4, 5, 6))) {
          TopKSelector<Integer> top = TopKSelector.least(2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/strconv/ftoa_test.go

    	{"32Fixed9Hard", math.Ldexp(14855922, -83), 'e', 9, 32},
    
    	{"64Fixed1", 123456, 'e', 3, 64},
    	{"64Fixed2", 123.456, 'e', 3, 64},
    	{"64Fixed3", 1.23456e+78, 'e', 3, 64},
    	{"64Fixed4", 1.23456e-78, 'e', 3, 64},
    	{"64Fixed12", 1.23456e-78, 'e', 12, 64},
    	{"64Fixed16", 1.23456e-78, 'e', 16, 64},
    	// From testdata/testfp.txt
    	{"64Fixed12Hard", math.Ldexp(6965949469487146, -249), 'e', 12, 64},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/divconst_test.go

    		x := uint64(123456789123456789)
    		for i := 0; i < b.N; i++ {
    			x += x << 4
    			u64res = uint64(x) / 37
    		}
    	})
    	b.Run("1234567", func(b *testing.B) {
    		x := uint64(123456789123456789)
    		for i := 0; i < b.N; i++ {
    			x += x << 4
    			u64res = uint64(x) / 1234567
    		}
    	})
    }
    
    func BenchmarkModconstU64(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		u64res = uint64(i) % 7
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 00:07:35 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/simple_with_connected_control_nodes.mlir

    // CHECK-NEXT:   name: "model_control_dependencies",
    // CHECK-NEXT:   buffer: 7
    // CHECK-NEXT:   } ],
    // CHECK-NEXT:   signature_defs: [ ]
    // CHECK-NEXT: }
    
      %0 = "tfl.pseudo_const" () {value = dense<[[1, 2], [3, 4], [5, 6]]> : tensor<3x2xi32>} : () -> tensor<3x2xi32> loc("Const")
      %1,%control_1 = tfl.control_node controls "tfl.sub" (%arg0, %0) {fused_activation_function = "RELU6"} : (tensor<3x2xi32>, tensor<3x2xi32>) -> tensor<3x2xi32> loc("sub")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 13:32:53 UTC 2022
    - 4.6K bytes
    - Viewed (0)
Back to top