Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PackageModuleInfo (0.28 sec)

  1. src/cmd/go/internal/modload/build.go

    			return filepath.Join(cfg.GOROOT, "src", path)
    		}
    	}
    	return ""
    }
    
    // PackageModuleInfo returns information about the module that provides
    // a given package. If modules are not enabled or if the package is in the
    // standard library or if the package was not successfully loaded with
    // LoadPackages or ImportFromFiles, nil is returned.
    func PackageModuleInfo(ctx context.Context, pkgpath string) *modinfo.ModulePublic {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		Happy:
    			if cfg.ModulesEnabled {
    				// Override data.p.Root, since ImportDir sets it to $GOPATH, if
    				// the module is inside $GOPATH/src.
    				if info := modload.PackageModuleInfo(ctx, path); info != nil {
    					data.p.Root = info.Dir
    				}
    			}
    			if r.err != nil {
    				if data.err != nil {
    					// ImportDir gave us one error, and the module loader gave us another.
    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