Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OverrideRoots (0.19 sec)

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

    		return false, err
    	}
    	requirements = rs
    	return changed, err
    }
    
    // OverrideRoots edits the global requirement roots by replacing the specific module versions.
    func OverrideRoots(ctx context.Context, replace []module.Version) {
    	requirements = overrideRoots(ctx, requirements, replace)
    }
    
    func overrideRoots(ctx context.Context, rs *Requirements, replace []module.Version) *Requirements {
    	drop := make(map[string]bool)
    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

    			v := gover.Local()
    			if opts != nil && opts.TidyGoVersion != "" {
    				v = opts.TidyGoVersion
    			}
    			addGoStmt(MainModules.ModFile(mainModule), mainModule, v)
    			rs = overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: v}})
    
    			// We need to add a 'go' version to the go.mod file, but we must assume
    			// that its existing contents match something between Go 1.11 and 1.16.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    				// pruning and semantics all along, but there may have been — and may
    				// still be — requirements on higher versions in the graph.
    				tidy := overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: ld.TidyGoVersion}})
    				mg, err := tidy.Graph(ctx)
    				if err != nil {
    					ld.error(err)
    				}
    				if v := mg.Selected("go"); v == ld.TidyGoVersion {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top