Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasRedundantRoot (0.11 sec)

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

    		return v, true
    	}
    	return "", false
    }
    
    // hasRedundantRoot returns true if the root list contains multiple requirements
    // of the same module or a requirement on any version of the main module.
    // Redundant requirements should be pruned, but they may influence version
    // selection.
    func (rs *Requirements) hasRedundantRoot() bool {
    	for i, m := range rs.rootModules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    	if inWorkspaceMode() {
    		// We don't need to update the mod file so return early.
    		requirements = rs
    		return rs, nil
    	}
    
    	mainModule := MainModules.mustGetSingleMainModule()
    
    	if rs.hasRedundantRoot() {
    		// If any module path appears more than once in the roots, we know that the
    		// go.mod file needs to be updated even though we have not yet loaded any
    		// transitive dependencies.
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top