Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ERROR (0.09 sec)

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

    }
    
    // A PackageError describes an error loading information about a package.
    type PackageError struct {
    	ImportStack      []string // shortest path from package named on command line to this one
    	Pos              string   // position of error
    	Err              error    // the error itself
    	IsImportCycle    bool     // the error is an import cycle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	    TestImports  []string          // imports from TestGoFiles
    //	    XTestImports []string          // imports from XTestGoFiles
    //
    //	    // Error information
    //	    Incomplete bool            // this package or a dependency has an error
    //	    Error      *PackageError   // error loading package
    //	    DepsErrors []*PackageError // errors loading dependencies
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	return noCompiler()
    }
    
    func (noToolchain) ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error {
    	return noCompiler()
    }
    
    func (noToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error {
    	return noCompiler()
    }
    
    func (noToolchain) cc(b *Builder, a *Action, ofile, cfile string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top