Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 01122334 (0.15 sec)

  1. src/runtime/string_test.go

    	}
    }
    
    func TestIntString(t *testing.T) {
    	// Non-escaping result of intstring.
    	s := ""
    	for i := rune(0); i < 4; i++ {
    		s += string(i+'0') + string(i+'0'+1)
    	}
    	if want := "01122334"; s != want {
    		t.Fatalf("want '%v', got '%v'", want, s)
    	}
    
    	// Escaping result of intstring.
    	var a [4]string
    	for i := rune(0); i < 4; i++ {
    		a[i] = string(i + '0')
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad_test.cc

    }
    
    TEST_F(CWiseUnaryGradTest, Sign) {
      auto x_fn = [this](const int i) { return RV({-1, 1, -2, 2, -3, 3}); };
      TestCWiseGrad<float, float>(SIGN, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Sin) {
      auto x_fn = [this](const int i) { return RV({0, -1, 1, -2, 2, -3, 3}); };
      TestCWiseGrad<float, float>(SIN, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Sin_Complex) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  3. src/slices/slices_test.go

    		[]int{1, 2, 3},
    	},
    	{
    		"2 items",
    		[]int{1, 1, 2},
    		[]int{1, 2},
    	},
    	{
    		"unsorted",
    		[]int{1, 2, 1},
    		[]int{1, 2, 1},
    	},
    	{
    		"many",
    		[]int{1, 2, 2, 3, 3, 4},
    		[]int{1, 2, 3, 4},
    	},
    }
    
    func TestCompact(t *testing.T) {
    	for _, test := range compactTests {
    		copy := Clone(test.s)
    		if got := Compact(copy); !Equal(got, test.want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    	cpuUsageTimestamp := int64(555555)
    	cpuUsageNanoSeconds := uint64(0x123456)
    	cpuUsageNanoCores := uint64(0x4000)
    	memoryUsageTimestamp := int64(666666)
    	memoryUsageWorkingSetBytes := uint64(0x11223344)
    	memoryUsageAvailableBytes := uint64(0x55667788)
    	memoryUsagePageFaults := uint64(200)
    	logStatsUsed := uint64(5000)
    	logStatsInodesUsed := uint64(5050)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/encoding/gob/codec_test.go

    	}
    	if len(d.M) != 3 || d.M["one"] != 1 || d.M["two"] != 2 || d.M["three"] != 3 {
    		t.Errorf("indirect to direct: d.M is %v not %v", d.M, ***i.M)
    	}
    	// Marshal direct, unmarshal to indirect.
    	d.A = [3]int{11, 22, 33}
    	d.S = []int{44, 55, 66}
    	d.M = map[string]int{"four": 4, "five": 5, "six": 6}
    	i = new(Indirect)
    	b.Reset()
    	NewEncoder(b).Encode(d)
    	dec = NewDecoder(b)
    	err = dec.Decode(&i)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/const-fold.mlir

      %cst_0 = arith.constant dense<[10, 20]> : tensor<2xi32>
      %cst_1 = arith.constant dense<[[1, 2], [3, 4]]> : tensor<2x2xi32>
      %cst_2 = arith.constant dense<[[[1, 1], [2, 2]], [[3, 3], [4, 4]]]> : tensor<2x2x2xi32>
    
      %0 = "tfl.add"(%cst_0, %cst_1) {fused_activation_function = "NONE"} : (tensor<    2xi32>, tensor<  2x2xi32>) -> tensor<  2x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  7. test/map.go

    		s += `"` + a[i] + `"`
    	}
    	s += "}"
    	return s
    }
    
    func main() {
    	testbasic()
    	testfloat()
    	testnan()
    }
    
    func testbasic() {
    	// Test a map literal.
    	mlit := map[string]int{"0": 0, "1": 1, "2": 2, "3": 3, "4": 4}
    	for i := 0; i < len(mlit); i++ {
    		s := string([]byte{byte(i) + '0'})
    		if mlit[s] != i {
    			panic(fmt.Sprintf("mlit[%s] = %d\n", s, mlit[s]))
    		}
    	}
    
    	mib := make(map[int]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 06 21:02:55 UTC 2014
    - 14.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

        rangeMap.put(Range.closedOpen(1, 2), 1);
        rangeMap.put(Range.closedOpen(3, 4), 2);
    
        rangeMap.merge(Range.closedOpen(0, 5), null, (v1, v2) -> v1 + 1);
    
        // {[1..2): 2, [3..4): 3}
        assertEquals(
            new ImmutableMap.Builder<>()
                .put(Range.closedOpen(1, 2), 2)
                .put(Range.closedOpen(3, 4), 3)
                .build(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		tcase    string
    		ip       string
    		family   AddressFamily
    		success  bool
    		expected net.IP
    	}{
    		{"empty", "", familyIPv4, false, nil},
    		{"too short", "AA", familyIPv4, false, nil},
    		{"too long", "0011223344", familyIPv4, false, nil},
    		{"invalid", "invalid!", familyIPv4, false, nil},
    		{"zero", "00000000", familyIPv4, true, net.IP{0, 0, 0, 0}},
    		{"ffff", "FFFFFFFF", familyIPv4, true, net.IP{0xff, 0xff, 0xff, 0xff}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
Back to top