Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkPathCollisions (0.15 sec)

  1. src/cmd/go/internal/load/pkg.go

    				return
    			}
    			for _, dep := range ldDeps {
    				addImport(dep, false)
    			}
    		}
    	}
    
    	// Check for case-insensitive collisions of import paths.
    	// If modifying, consider changing checkPathCollisions() in
    	// src/cmd/go/internal/modcmd/vendor.go
    	fold := str.ToFold(p.ImportPath)
    	if other := foldPath[fold]; other == "" {
    		foldPath[fold] = p.ImportPath
    	} else if other != p.ImportPath {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top