Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for vendorPkg (0.12 sec)

  1. src/cmd/go/internal/modcmd/vendor.go

    		case goVersion != "":
    			fmt.Fprintf(w, "## go %s\n", goVersion)
    		}
    
    		pkgs := modpkgs[m]
    		sort.Strings(pkgs)
    		for _, pkg := range pkgs {
    			fmt.Fprintf(w, "%s\n", pkg)
    			vendorPkg(vdir, pkg)
    		}
    	}
    
    	if includeAllReplacements {
    		// Record unused and wildcard replacements at the end of the modules.txt file:
    		// without access to the complete build list, the consumer of the vendor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/why.go

    				if d > 0 && d < bestDepth {
    					best = path
    					bestDepth = d
    				}
    			}
    			why := modload.Why(best)
    			if why == "" {
    				vendoring := ""
    				if *whyVendor {
    					vendoring = " to vendor"
    				}
    				why = "(main module does not need" + vendoring + " module " + m.Path + ")\n"
    			}
    			fmt.Printf("%s# %s\n%s", sep, m.Path, why)
    			sep = "\n"
    		}
    	} else {
    		// Resolve to packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_vendor_modules_txt_consistent.txt

    -- modules.txt.required_but_not_explicit --
    ## workspace
    # example.com/p v1.0.0 => ./p
    ## go 1.21
    # example.com/q v1.0.0 => ./q
    ## explicit; go 1.21
    -- required_but_not_explicit_error.txt --
    go: inconsistent vendoring in $GOPATH${/}src:
    	example.com/p@v1.0.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
    
    	To ignore the vendor directory, use -mod=readonly or -mod=mod.
    	To sync the vendor directory, run:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_go_version_missing.txt

    cp go.mod go.mod.orig
    
    # For modules whose go.mod file does not include a 'go' directive,
    # we assume the language and dependency semantics of Go 1.16,
    # but do not trigger “automatic vendoringmode (-mod=vendor),
    # which was added in Go 1.14 and was not triggered
    # under the same conditions in Go 1.16 (which would instead
    # default to -mod=readonly when no 'go' directive is present).
    
    # For Go 1.16 modules, 'all' should prune out dependencies of tests,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_in_testdata_dir.txt

    go get
    grep 'rsc.io/quote' go.mod
    
    # Tidying the module should preserve those dependencies.
    go mod tidy
    grep 'rsc.io/quote' go.mod
    
    [short] stop
    
    # Vendoring the module's dependencies should work too.
    go mod vendor
    exists vendor/rsc.io/quote
    
    # The same should work in directories with names starting with underscores.
    cd $WORK/_ignored
    go mod init testdata.tld/foo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 969 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor_replace.txt

    env GO111MODULE=on
    
    # Replacement should not use a vendor directory as the target.
    ! go mod vendor
    stderr 'replacement path ./vendor/not-rsc.io/quote/v3 inside vendor directory'
    
    cp go.mod1 go.mod
    rm -r vendor
    
    # Before vendoring, we expect to see the original directory.
    go list -f '{{with .Module}}{{.Version}}{{end}} {{.Dir}}' rsc.io/quote/v3
    stdout 'v3.0.0'
    stdout '.*[/\\]not-rsc.io[/\\]quote[/\\]v3'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_legacy_mod.txt

    # In GOPATH mode, module legacy support does path rewriting very similar to vendoring.
    
    env GO111MODULE=off
    
    go list -f '{{range .Imports}}{{.}}{{"\n"}}{{end}}' old/p1
    stdout ^new/p1$
    
    go list -f '{{range .Imports}}{{.}}{{"\n"}}{{end}}' new/p1
    stdout ^new/p2$           # not new/v2/p2
    ! stdout ^new/v2
    stdout ^new/sub/x/v1/y$   # not new/sub/v2/x/v1/y
    ! stdout ^new/sub/v2
    stdout ^new/sub/inner/x # not new/sub/v2/inner/x
    
    go build old/p1 new/p1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 16:15:13 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_auto.txt

    # A 'go 1.13' vendor/modules.txt file is not usually sufficient
    # to pass those checks.
    go mod edit -go=1.14
    
    ! go list -f {{.Dir}} -tags tools all
    stderr '^go: inconsistent vendoring in '$WORK[/\\]auto':$'
    stderr '^\texample.com/printversion@v1.0.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/importer_test.go

    type gcimports struct {
    	packages map[string]*types2.Package
    	lookup   func(path string) (io.ReadCloser, error)
    }
    
    func (m *gcimports) Import(path string) (*types2.Package, error) {
    	return m.ImportFrom(path, "" /* no vendoring */, 0)
    }
    
    func (m *gcimports) ImportFrom(path, srcDir string, mode types2.ImportMode) (*types2.Package, error) {
    	if mode != 0 {
    		panic("mode must be 0")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 25 19:24:25 UTC 2021
    - 913 bytes
    - Viewed (0)
  10. src/go/importer/importer.go

    type gcimports struct {
    	fset     *token.FileSet
    	packages map[string]*types.Package
    	lookup   Lookup
    }
    
    func (m *gcimports) Import(path string) (*types.Package, error) {
    	return m.ImportFrom(path, "" /* no vendoring */, 0)
    }
    
    func (m *gcimports) ImportFrom(path, srcDir string, mode types.ImportMode) (*types.Package, error) {
    	if mode != 0 {
    		panic("mode must be 0")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top