Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for actionList (0.08 sec)

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

    	"cmd/go/internal/trace"
    	"cmd/internal/buildid"
    	"cmd/internal/quoted"
    	"cmd/internal/sys"
    )
    
    const DefaultCFlags = "-O2 -g"
    
    // actionList returns the list of actions in the dag rooted at root
    // as visited in a depth-first post-order traversal.
    func actionList(root *Action) []*Action {
    	seen := map[*Action]bool{}
    	all := []*Action{}
    	var walk func(*Action)
    	walk = func(a *Action) {
    		if seen[a] {
    			return
    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