Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestVariousDeadlines1Proc (0.41 sec)

  1. src/os/timeout_test.go

    func TestVariousDeadlines(t *testing.T) {
    	t.Parallel()
    	testVariousDeadlines(t)
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines1Proc(t *testing.T) {
    	// Cannot use t.Parallel - modifies global GOMAXPROCS.
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    	testVariousDeadlines(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/net/timeout_test.go

    func TestVariousDeadlines(t *testing.T) {
    	t.Parallel()
    	testVariousDeadlines(t)
    }
    
    // There is a very similar copy of this in os/timeout_test.go.
    func TestVariousDeadlines1Proc(t *testing.T) {
    	// Cannot use t.Parallel - modifies global GOMAXPROCS.
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    	testVariousDeadlines(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top