Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestLayersTimeout (0.3 sec)

  1. src/context/x_test.go

    		t.Fatalf("timed out after %v waiting for child.Done(); stacks:\n%s", d, buf[:n])
    	}
    }
    
    func TestLayersCancel(t *testing.T) {
    	testLayers(t, time.Now().UnixNano(), false)
    }
    
    func TestLayersTimeout(t *testing.T) {
    	testLayers(t, time.Now().UnixNano(), true)
    }
    
    func testLayers(t *testing.T, seed int64, testTimeout bool) {
    	t.Parallel()
    
    	r := rand.New(rand.NewSource(seed))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top