Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for modfile (0.09 sec)

  1. src/cmd/go/alldocs.go

    // module is in the module cache or if the -modfile flag is used.
    //
    // The default output is to print the module path and then
    // information about the version and replacement if any.
    // For example, 'go list -m all' might print:
    //
    //	my/main/module
    //	golang.org/x/text v0.3.0 => /tmp/text
    //	rsc.io/pdf v0.1.1
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		if visited[p1] {
    			continue
    		}
    		visited[p1] = true
    		if p1.Module != nil {
    			m := module.Version{Path: p1.Module.Path, Version: p1.Module.Version}
    			if p1.Module.Path != main.Path && mdeps[m] == nil {
    				mdeps[m] = debugModFromModinfo(p1.Module)
    			}
    		}
    		q = append(q, p1.Internal.Imports...)
    	}
    	sortedMods := make([]module.Version, 0, len(mdeps))
    	for mod := range mdeps {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top