Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for modRoots (0.12 sec)

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

    		}
    		seen[modRoot] = true
    		modRoots = append(modRoots, modRoot)
    	}
    
    	for _, g := range wf.Godebug {
    		if err := CheckGodebug("godebug", g.Key, g.Value); err != nil {
    			return nil, nil, fmt.Errorf("error loading go.work:\n%s:%d: %w", base.ShortPath(path), g.Syntax.Start.Line, err)
    		}
    	}
    
    	return wf, modRoots, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/vendor.go

    		for _, r := range replaces {
    			if seenrep[r.Old] {
    				continue // Don't print the same error more than once
    			}
    			seenrep[r.Old] = true
    			rNew, modRoot, replacementSource := replacementFrom(r.Old)
    			rNewCanonical := canonicalizeReplacePath(rNew, modRoot)
    			vr := vendorMeta[r.Old].Replacement
    			if vr == (module.Version{}) {
    				if rNewCanonical == (module.Version{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    				modload.MustHaveModRoot()
    				var modRoots []string
    				for _, m := range modload.MainModules.Versions() {
    					modRoots = append(modRoots, modload.MainModules.ModRoot(m))
    				}
    				var plural string
    				if len(modRoots) != 1 {
    					plural = "s"
    				}
    				return errSet(fmt.Errorf("%s%s is not within module%s rooted at %s", q.pattern, absDetail, plural, strings.Join(modRoots, ", ")))
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	var pkgNotFoundErr error
    	pkgNotFoundLongestPrefix := ""
    	for _, mainModule := range MainModules.Versions() {
    		modRoot := MainModules.ModRoot(mainModule)
    		if modRoot != "" && str.HasFilePathPrefix(absDir, modRoot) && !strings.Contains(absDir[len(modRoot):], "@") {
    			suffix := filepath.ToSlash(str.TrimFilePathPrefix(absDir, modRoot))
    			if pkg, found := strings.CutPrefix(suffix, "vendor/"); found {
    				if cfg.BuildMod != "vendor" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/query.go

    					m.Pkgs = []string{pattern}
    				}
    			}
    			return m
    		}
    	}
    
    	var mainModuleMatches []module.Version
    	for _, mainModule := range MainModules.Versions() {
    		m := match(mainModule, modRoots, true)
    		if len(m.Pkgs) > 0 {
    			if query != "upgrade" && query != "patch" {
    				return nil, nil, &QueryMatchesPackagesInMainModuleError{
    					Pattern:  pattern,
    					Query:    query,
    					Packages: m.Pkgs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/read.go

    	}
    	if cfg.BuildMod == "vendor" {
    		// Even if the main module is in the module cache,
    		// its vendored dependencies are not loaded from their
    		// usual cached locations.
    		return nil, errNotFromModuleCache
    	}
    	modroot = filepath.Clean(modroot)
    	if str.HasFilePathPrefix(modroot, cfg.GOROOTsrc) || !str.HasFilePathPrefix(modroot, cfg.GOMODCACHE) {
    		return nil, errNotFromModuleCache
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modindex/scan.go

    // be indexed because it contains symlinks.
    func indexModule(modroot string) ([]byte, error) {
    	fsys.Trace("indexModule", modroot)
    	var packages []*rawPackage
    
    	// If the root itself is a symlink to a directory,
    	// we want to follow it (see https://go.dev/issue/50807).
    	// Add a trailing separator to force that to happen.
    	root := str.WithFilePathSeparator(modroot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/search.go

    			walkPkgs(filepath.Join(cfg.GOROOTsrc, "cmd"), "cmd", pruneGoMod)
    		}
    	}
    
    	if cfg.BuildMod == "vendor" {
    		for _, mod := range MainModules.Versions() {
    			if modRoot := MainModules.ModRoot(mod); modRoot != "" {
    				walkPkgs(modRoot, MainModules.PathPrefix(mod), pruneGoMod|pruneVendor)
    			}
    		}
    		if HasModRoot() {
    			walkPkgs(VendorDir(), "", pruneVendor)
    		}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/import.go

    					return module.Version{}, MainModules.ModRoot(mainModule), dir, nil, err
    				} else if ok {
    					return mainModule, MainModules.ModRoot(mainModule), dir, nil, nil
    				}
    			}
    		}
    		dir := filepath.Join(cfg.GOROOTsrc, path)
    		modroot = cfg.GOROOTsrc
    		if str.HasPathPrefix(path, "cmd") {
    			modroot = filepath.Join(cfg.GOROOTsrc, "cmd")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/plugin_test.go

    	os.Setenv("PWD", altRoot)
    	goCmd(nil, "build", "-buildmode=plugin", "-o", filepath.Join(modRoot, "plugin-mismatch.so"), "./plugin-mismatch")
    
    	os.Setenv("GOPATH", GOPATH)
    	if err := os.Chdir(modRoot); err != nil {
    		log.Panic(err)
    	} else {
    		prettyPrintf("cd %s\n", modRoot)
    	}
    	os.Setenv("PWD", modRoot)
    
    	os.Setenv("LD_LIBRARY_PATH", modRoot)
    
    	goCmd(nil, "build", "-buildmode=plugin", "./plugin1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top