Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DepsErrors (0.1 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)
  2. src/cmd/go/internal/load/pkg.go

    	// Error information
    	// Incomplete is above, packed into the other bools
    	Error      *PackageError   `json:",omitempty"` // error loading this package (not dependencies)
    	DepsErrors []*PackageError `json:",omitempty"` // errors loading dependencies, collected by go list before output
    
    	// Test information
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    //	    // Error information
    //	    Incomplete bool            // this package or a dependency has an error
    //	    Error      *PackageError   // error loading package
    //	    DepsErrors []*PackageError // errors loading dependencies
    //	}
    //
    // Packages stored in vendor directories report an ImportPath that includes the
    // path to the vendor directory (for example, "d/vendor/p" instead of "p"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top