Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkStable1e2 (0.19 sec)

  1. src/sort/sort_test.go

    			}
    			if name == "Stable" && !data.inOrder() {
    				b.Errorf("%s unstable on %d ints", name, n)
    			}
    		}
    	}
    }
    
    func BenchmarkSort1e2(b *testing.B)   { bench(b, 1e2, Sort, "Sort") }
    func BenchmarkStable1e2(b *testing.B) { bench(b, 1e2, Stable, "Stable") }
    func BenchmarkSort1e4(b *testing.B)   { bench(b, 1e4, Sort, "Sort") }
    func BenchmarkStable1e4(b *testing.B) { bench(b, 1e4, Stable, "Stable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top