Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for exclusions (1.22 sec)

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

    		if v1 == "" {
    			return 0
    		}
    		return -1
    	}
    	if v1 == "" {
    		return 1
    	}
    	return gover.ModCompare(p, v1, v2)
    }
    
    // mvsReqs implements mvs.Reqs for module semantic versions,
    // with any exclusions or replacements applied internally.
    type mvsReqs struct {
    	roots []module.Version
    }
    
    func (r *mvsReqs) Required(mod module.Version) ([]module.Version, error) {
    	if mod.Version == "" && MainModules.Contains(mod.Path) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/modfile.go

    type retraction struct {
    	modfile.VersionInterval
    	Rationale string
    }
    
    // goModSummary returns a summary of the go.mod file for module m,
    // taking into account any replacements for m, exclusions of its dependencies,
    // and/or vendoring.
    //
    // m must be a version in the module graph, reachable from the Target module.
    // In readonly mode, the go.sum file must contain an entry for m's go.mod file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // Users should prefer 'go get toolchain@version'.
    //
    // The -exclude=path@version and -dropexclude=path@version flags
    // add and drop an exclusion for the given module path and version.
    // Note that -exclude=path@version is a no-op if that exclusion already exists.
    //
    // The -replace=old[@v]=new[@v] flag adds a replacement of the given
    // module path and version pair. If the @v in old@v is omitted, a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/edit.go

    Users should prefer 'go get toolchain@version'.
    
    The -exclude=path@version and -dropexclude=path@version flags
    add and drop an exclusion for the given module path and version.
    Note that -exclude=path@version is a no-op if that exclusion already exists.
    
    The -replace=old[@v]=new[@v] flag adds a replacement of the given
    module path and version pair. If the @v in old@v is omitted, a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top