Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for RELEASE (0.16 sec)

  1. src/cmd/go/internal/modget/get.go

    	go get example.com/mod@none
    
    To upgrade the minimum required Go version to the latest released Go version:
    
    	go get go@latest
    
    To upgrade the Go toolchain to the latest patch release of the current Go toolchain:
    
    	go get toolchain@patch
    
    See https://golang.org/ref/mod#go-get for details.
    
    In earlier versions of Go, 'go get' was used to build and install packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K 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