Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 112 of 112 for releasem (0.12 sec)

  1. src/os/os_test.go

    			// the original working directory.
    			panic(err)
    		}
    	}()
    
    	// Note the deferred Wait must be called after the deferred close(done),
    	// to ensure the N goroutines have been released even if the main goroutine
    	// calls Fatalf. It must be called before the Chdir back to the original
    	// directory, and before the deferred deletion implied by TempDir,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    //
    // Deprecated: Use [Request.WithContext] to create a request with a
    // cancelable context instead. CancelRequest cannot cancel HTTP/2
    // requests. This may become a no-op in a future release of Go.
    func (t *Transport) CancelRequest(req *Request) {
    	t.reqMu.Lock()
    	cancel := t.reqCanceler[req]
    	t.reqMu.Unlock()
    	if cancel != nil {
    		cancel(errRequestCanceled)
    	}
    }
    
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top