Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkRepeatLarge (0.32 sec)

  1. src/bytes/bytes_test.go

    	for i := 0; i < b.N; i++ {
    		SplitN(benchInputHard, sep, 10)
    	}
    }
    
    func BenchmarkRepeat(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Repeat([]byte("-"), 80)
    	}
    }
    
    func BenchmarkRepeatLarge(b *testing.B) {
    	s := Repeat([]byte("@"), 8*1024)
    	for j := 8; j <= 30; j++ {
    		for _, k := range []int{1, 16, 4097} {
    			s := s[:k]
    			n := (1 << j) / k
    			if n == 0 {
    				continue
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
Back to top