Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for original (0.31 sec)

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

    }
    
    type resolver struct {
    	localQueries      []*query // queries for absolute or relative paths
    	pathQueries       []*query // package path literal queries in original order
    	wildcardQueries   []*query // path wildcard queries in original order
    	patternAllQueries []*query // queries with the pattern "all"
    
    	// Indexed "none" queries. These are also included in the slices above;
    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

    }
    
    // transportRequest is a wrapper around a *Request that adds
    // optional extra headers to write and stores any error to return
    // from roundTrip.
    type transportRequest struct {
    	*Request                        // original request, not to be mutated
    	extra    Header                 // extra headers to write, or nil
    	trace    *httptrace.ClientTrace // optional
    
    	ctx    context.Context // canceled when we are done with the request
    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