Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testDeterministic (0.11 sec)

  1. src/compress/flate/writer_test.go

    // even when writing different sizes to the Writer.
    func TestDeterministic(t *testing.T) {
    	t.Parallel()
    	for i := 0; i <= 9; i++ {
    		t.Run(fmt.Sprint("L", i), func(t *testing.T) { testDeterministic(i, t) })
    	}
    	t.Run("LM2", func(t *testing.T) { testDeterministic(-2, t) })
    }
    
    func testDeterministic(i int, t *testing.T) {
    	t.Parallel()
    	// Test so much we cross a good number of block boundaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.4K bytes
    - Viewed (0)
Back to top