Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isPseudo (0.07 sec)

  1. src/runtime/mklockrank.go

    //
    // Lock ranks that allow self-cycles list themselves.
    var lockPartialOrder [][]lockRank = [][]lockRank{
    `)
    	for _, rank := range topo {
    		if isPseudo(rank) {
    			continue
    		}
    		list := []string{}
    		for _, before := range g.Edges(rank) {
    			if !isPseudo(before) {
    				list = append(list, cname(before))
    			}
    		}
    		if cyclicRanks[rank] {
    			list = append(list, cname(rank))
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top