Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/data-usage-cache.go

    		return root
    	}
    	flat := d.flatten(*root)
    	if flat.ReplicationStats.empty() {
    		flat.ReplicationStats = nil
    	}
    	return &flat
    }
    
    // totalChildrenRec returns the total number of children recorded.
    func (d *dataUsageCache) totalChildrenRec(path string) int {
    	root := d.find(path)
    	if root == nil || len(root.Children) == 0 {
    		return 0
    	}
    	n := len(root.Children)
    	for ch := range root.Children {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 41.4K bytes
    - Viewed (1)
Back to top