Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkFastrand64 (0.15 sec)

  1. src/runtime/rand_test.go

    		case "plan9":
    			// ok
    		}
    	}
    }
    
    func BenchmarkFastrand(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Fastrand()
    		}
    	})
    }
    
    func BenchmarkFastrand64(b *testing.B) {
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Fastrand64()
    		}
    	})
    }
    
    func BenchmarkFastrandHashiter(b *testing.B) {
    	var m = make(map[int]int, 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 23:44:31 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top