Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for DepsErrors (0.12 sec)

  1. src/cmd/go/internal/list/list.go

    	p.DepsErrors = make([]*load.PackageError, 0, len(depsErrors))
    	for deperr := range depsErrors {
    		p.DepsErrors = append(p.DepsErrors, deperr)
    	}
    	// Sort packages by the package on the top of the stack, which should be
    	// the package the error was produced for. Each package can have at most
    	// one error set on it.
    	sort.Slice(p.DepsErrors, func(i, j int) bool {
    		stki, stkj := p.DepsErrors[i].ImportStack, p.DepsErrors[j].ImportStack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top