Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for initialSelected (0.21 sec)

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

    				// need to index one copy.
    				r.nonesByPath[q.pattern] = q
    			}
    		}
    	}
    
    	return r
    }
    
    // initialSelected returns the version of the module with the given path that
    // was selected at the start of this 'go get' invocation.
    func (r *resolver) initialSelected(mPath string) (version string) {
    	v, ok := r.initialVersion[mPath]
    	if !ok {
    		return "none"
    	}
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top