Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ModInfoProg (0.24 sec)

  1. src/cmd/go/internal/work/exec.go

    		if pgoProfile != "" {
    			return fmt.Errorf("action contains multiple PGO profile dependencies")
    		}
    		pgoProfile = a1.built
    	}
    
    	if p.Internal.BuildInfo != nil && cfg.ModulesEnabled {
    		prog := modload.ModInfoProg(p.Internal.BuildInfo.String(), cfg.BuildToolchainName == "gccgo")
    		if len(prog) > 0 {
    			if err := sh.writeFile(objdir+"_gomod_.go", prog); err != nil {
    				return err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	"internal/goarch"
    	"internal/goos"
    	"internal/runtime/atomic"
    	"internal/runtime/exithook"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // set using cmd/go/internal/modload.ModInfoProg
    var modinfo string
    
    // Goroutine scheduler
    // The scheduler's job is to distribute ready-to-run goroutines over worker threads.
    //
    // The main concepts are:
    // G - goroutine.
    // M - worker thread, or machine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top