Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for StringAll (0.15 sec)

  1. cmd/data-usage-cache.go

    	mark(*topE)
    
    	// Delete all entries not found.
    	for k := range d.Cache {
    		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)
    	}
    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