Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for vendorPkg (0.45 sec)

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

    // (unless ExplicitWriteGoMod is set) or by calling WriteGoMod directly.
    //
    // As a side-effect, LoadModFile may change cfg.BuildMod to "vendor" if
    // -mod wasn't set explicitly and automatic vendoring should be enabled.
    //
    // If LoadModFile or CreateModFile has already been called, LoadModFile returns
    // the existing in-memory requirements (rather than re-reading them from disk).
    //
    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/buildlist.go

    // Graph method.
    //
    // The rootModules slice must be sorted according to gover.ModSort.
    // The caller must not modify the rootModules slice or direct map after passing
    // them to newRequirements.
    //
    // If vendoring is in effect, the caller must invoke initVendor on the returned
    // *Requirements before any other method.
    func newRequirements(pruning modPruning, rootModules []module.Version, direct map[string]bool) *Requirements {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/go/build/build.go

    			}
    		}
    
    		// If the source directory is in GOROOT, then the in-process code works fine
    		// and we should keep using it. Moreover, the 'go list' approach below doesn't
    		// take standard-library vendoring into account and will fail.
    		if _, ok := ctxt.hasSubdir(filepath.Join(ctxt.GOROOT, "src"), absSrcDir); ok {
    			return errNoModules
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top