Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for modRoots (0.11 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/search/search.go

    	// and in the returned import paths.
    
    	if len(modRoots) > 1 {
    		abs, err := filepath.Abs(dir)
    		if err != nil {
    			m.AddError(err)
    			return
    		}
    		var found bool
    		for _, modRoot := range modRoots {
    			if modRoot != "" && str.HasFilePathPrefix(abs, modRoot) {
    				found = true
    			}
    		}
    		if !found {
    			plural := ""
    			if len(modRoots) > 1 {
    				plural = "s"
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/cgo/internal/teststdio/stdio_test.go

    	// Copy testdata into GOPATH/src/cgostdio, along with a go.mod file
    	// declaring the same path.
    	modRoot := filepath.Join(GOPATH, "src", "cgostdio")
    	if err := cgotest.OverlayDir(modRoot, "testdata"); err != nil {
    		log.Panic(err)
    	}
    	if err := os.Chdir(modRoot); err != nil {
    		log.Panic(err)
    	}
    	os.Setenv("PWD", modRoot)
    	if err := os.WriteFile("go.mod", []byte("module cgostdio\n"), 0666); err != nil {
    		log.Panic(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testlife/life_test.go

    	// Copy testdata into GOPATH/src/cgolife, along with a go.mod file
    	// declaring the same path.
    	modRoot := filepath.Join(GOPATH, "src", "cgolife")
    	if err := cgotest.OverlayDir(modRoot, "testdata"); err != nil {
    		log.Panic(err)
    	}
    	if err := os.Chdir(modRoot); err != nil {
    		log.Panic(err)
    	}
    	os.Setenv("PWD", modRoot)
    	if err := os.WriteFile("go.mod", []byte("module cgolife\n"), 0666); err != nil {
    		log.Panic(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top