Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestCloneLarge (0.14 sec)

  1. src/maps/maps_test.go

    	if len(m2) != N {
    		t.Errorf("len2(m2) = %d, want %d", len(m2), N)
    	}
    	for i := 0; i < N; i++ {
    		if m2[i] != m[i] {
    			t.Errorf("m2[%d] = %d, want %d", i, m2[i], m[i])
    		}
    	}
    }
    
    func TestCloneLarge(t *testing.T) {
    	// See issue 64474.
    	type K [17]float64 // > 128 bytes
    	type V [17]float64
    
    	var zero float64
    	negZero := -zero
    
    	for tst := 0; tst < 3; tst++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 17:05:56 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top