Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for blossom (0.13 sec)

  1. src/cmd/compile/internal/ssa/poset.go

    // Panic if i is not in any DAG.
    func (po *poset) findroot(i uint32) uint32 {
    	// TODO(rasky): if needed, a way to speed up this search is
    	// storing a bitset for each root using it as a mini bloom filter
    	// of nodes present under that root.
    	for _, r := range po.roots {
    		if po.reaches(r, i, false) {
    			return r
    		}
    	}
    	panic("findroot didn't find any root")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. cmd/data-usage-cache.go

    		if _, ok := found[k]; !ok {
    			delete(d.Cache, k)
    		}
    	}
    }
    
    // StringAll returns a detailed string representation of all entries in the cache.
    func (d *dataUsageCache) StringAll() string {
    	// Remove bloom filter from print.
    	s := fmt.Sprintf("info:%+v\n", d.Info)
    	for k, v := range d.Cache {
    		s += fmt.Sprintf("\t%v: %+v\n", k, v)
    	}
    	return strings.TrimSpace(s)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
Back to top