Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkQuoteMetaAll (0.24 sec)

  1. src/regexp/all_test.go

    	re := MustCompile("foo (ba+r)? baz")
    	b.ResetTimer()
    	b.RunParallel(func(pb *testing.PB) {
    		re := re.Copy()
    		for pb.Next() {
    			re.Match(x)
    		}
    	})
    }
    
    var sink string
    
    func BenchmarkQuoteMetaAll(b *testing.B) {
    	specials := make([]byte, 0)
    	for i := byte(0); i < utf8.RuneSelf; i++ {
    		if special(i) {
    			specials = append(specials, i)
    		}
    	}
    	s := string(specials)
    	b.SetBytes(int64(len(s)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top