Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for binaryOnly (0.1 sec)

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

    		}
    	}
    
    	p.Dir = pp.Dir
    	p.ImportPath = pp.ImportPath
    	p.ImportComment = pp.ImportComment
    	p.Name = pp.Name
    	p.Doc = pp.Doc
    	p.Root = pp.Root
    	p.ConflictDir = pp.ConflictDir
    	p.BinaryOnly = pp.BinaryOnly
    
    	// TODO? Target
    	p.Goroot = pp.Goroot
    	p.Standard = p.Goroot && p.ImportPath != "" && search.IsStandardImportPath(p.ImportPath)
    	p.GoFiles = pp.GoFiles
    	p.CgoFiles = pp.CgoFiles
    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/internal/work/exec.go

    		bit(needCgoHdr, b.needCgoHdr(a)) |
    		bit(needVet, a.needVet) |
    		bit(needCovMetaFile, needCovMeta) |
    		bit(needCompiledGoFiles, b.NeedCompiledGoFiles)
    
    	if !p.BinaryOnly {
    		if b.useCache(a, b.buildActionID(a), p.Target, need&needBuild != 0) {
    			// We found the main output in the cache.
    			// If we don't need any other outputs, we can stop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	    StaleReason    string   // explanation for Stale==true
    //	    Root           string   // Go root or Go path dir containing this package
    //	    ConflictDir    string   // this directory shadows Dir in $GOPATH
    //	    BinaryOnly     bool     // binary-only package (no longer supported)
    //	    ForTest        string   // package is only for use in named test
    //	    Export         string   // file containing export data (when using -export)
    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