Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ModRoot (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/internal/modload/modfile.go

    				modRoot := MainModules.ModRoot(v)
    				if foundModRoot != "" && foundFrom != from && found != r {
    					base.Errorf("conflicting replacements found for %v in workspace modules defined by %v and %v",
    						mod, modFilePath(foundModRoot), modFilePath(modRoot))
    					return found, foundModRoot, modFilePath(foundModRoot)
    				}
    				found, foundModRoot = r, modRoot
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/build.go

    		}
    		if v, ok := rawGoVersion.Load(m); ok {
    			info.GoVersion = v.(string)
    		} else {
    			panic("internal error: GoVersion not set for main module")
    		}
    		if modRoot := MainModules.ModRoot(m); modRoot != "" {
    			info.Dir = modRoot
    			info.GoMod = modFilePath(modRoot)
    		}
    		return info
    	}
    
    	info := &modinfo.ModulePublic{
    		Path:     m.Path,
    		Version:  m.Version,
    		Indirect: rs != nil && !rs.direct[m.Path],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    func cloneTestdataModule(gopath string) (string, error) {
    	modRoot := filepath.Join(gopath, "src", "testshared")
    	if err := cgotest.OverlayDir(modRoot, "testdata"); err != nil {
    		return "", err
    	}
    	if err := os.WriteFile(filepath.Join(modRoot, "go.mod"), []byte("module testshared\n"), 0644); err != nil {
    		return "", err
    	}
    	return modRoot, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/cshared_test.go

    		log.Panic(err)
    	}
    	defer os.RemoveAll(GOPATH)
    	os.Setenv("GOPATH", GOPATH)
    
    	modRoot := filepath.Join(GOPATH, "src", "testcshared")
    	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 testcshared\n"), 0666); err != nil {
    		log.Panic(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. src/cmd/go/internal/search/search.go

    	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)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	// Copy testdata into GOPATH/src/testarchive, along with a go.mod file
    	// declaring the same path.
    	modRoot := filepath.Join(GOPATH, "src", "testcarchive")
    	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 testcarchive\n"), 0666); err != nil {
    		log.Panic(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top