Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 01122334 (1.24 sec)

  1. 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)
  2. src/runtime/internal/sys/intrinsics_test.go

    	x := uint64(0x1122334455667788)
    	y := sys.Bswap64(x)
    	if y != 0x8877665544332211 {
    		t.Errorf("Bswap(%x)=%x, want 0x8877665544332211", x, y)
    	}
    }
    func TestBswap32(t *testing.T) {
    	x := uint32(0x11223344)
    	y := sys.Bswap32(x)
    	if y != 0x44332211 {
    		t.Errorf("Bswap(%x)=%x, want 0x44332211", x, y)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 984 bytes
    - Viewed (0)
  3. src/reflect/iter_test.go

    package reflect_test
    
    import (
    	"iter"
    	"maps"
    	. "reflect"
    	"testing"
    )
    
    func TestValueSeq(t *testing.T) {
    	m := map[string]int{
    		"1": 1,
    		"2": 2,
    		"3": 3,
    		"4": 4,
    	}
    	c := make(chan int, 3)
    	for i := range 3 {
    		c <- i
    	}
    	close(c)
    	tests := []struct {
    		name  string
    		val   Value
    		check func(*testing.T, iter.Seq[Value])
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 14:27:54 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/internal/obj/arm64/doc.go

    And for a 128-bit integer, it take two 64-bit operands, for the low and high parts separately.
    
    Examples:
    
    	VMOVS $0x11223344, V0
    	VMOVD $0x1122334455667788, V1
    	VMOVQ $0x1122334455667788, $0x99aabbccddeeff00, V2   // V2=0x99aabbccddeeff001122334455667788
    
    8. Move an optionally-shifted 16-bit immediate value to a register.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/math/big/float_test.go

    		if got != test.want || acc != test.acc {
    			t.Errorf("%s: got %s (%s); want %s (%s)", test.x, got, acc, test.want, test.acc)
    		}
    	}
    
    	// check that supplied *Int is used
    	for _, f := range []string{"0", "1", "-1", "1234"} {
    		x := makeFloat(f)
    		i := new(Int)
    		if res, _ := x.Int(i); res != i {
    			t.Errorf("(%s).Int is not using supplied *Int", f)
    		}
    	}
    }
    
    func TestFloatRat(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top