Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ModRoot (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/list_replace_absolute_windows.txt

    # Test a replacement with an absolute path (so the path isn't
    # cleaned by having filepath.Abs called on it). This checks
    # whether the modindex logic cleans the modroot path before using
    # it.
    
    [!GOOS:windows] skip
    [short] skip
    
    go run print_go_mod.go # use this program to write a go.mod with an absolute path
    cp stdout go.mod
    
    go list -modfile=go.mod all
    -- print_go_mod.go --
    //go:build ignore
    package main
    
    import (
        "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 693 bytes
    - Viewed (0)
  6. src/cmd/go/internal/workcmd/sync.go

    	var goV string
    	for _, m := range mms.Versions() {
    		if mms.ModRoot(m) == "" && m.Path == "command-line-arguments" {
    			// This is not a real module.
    			// TODO(#49228): Remove this special case once the special
    			// command-line-arguments module is gone.
    			continue
    		}
    
    		// Use EnterModule to reset the global state in modload to be in
    		// single-module mode using the modroot of m.
    		modload.EnterModule(ctx, mms.ModRoot(m))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_trimpath.txt

    		log.Fatal(err)
    	}
    
    	if os.Getenv("GO111MODULE") == "on" {
    		out, err := exec.Command("go", "env", "GOMOD").Output()
    		if err != nil {
    			log.Fatal(err)
    		}
    		modRoot := filepath.Dir(strings.TrimSpace(string(out)))
    		check(data, "module root", modRoot)
    	} else {
    		check(data, "GOPATH", os.Getenv("GOPATH"))
    	}
    	check(data, "GOROOT", os.Getenv("GOROOT"))
    }
    
    func check(data []byte, desc, dir string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. 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)
Back to top