Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for addFiles (0.18 sec)

  1. cmd/data-usage-cache.go

    type allTierStats struct {
    	Tiers map[string]tierStats `msg:"ts"`
    }
    
    func newAllTierStats() *allTierStats {
    	return &allTierStats{
    		Tiers: make(map[string]tierStats),
    	}
    }
    
    func (ats *allTierStats) addSizes(tiers map[string]tierStats) {
    	for tier, st := range tiers {
    		ats.Tiers[tier] = ats.Tiers[tier].add(st)
    	}
    }
    
    func (ats *allTierStats) merge(other *allTierStats) {
    	for tier, st := range other.Tiers {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 41.4K bytes
    - Viewed (1)
  2. cmd/data-scanner.go

    			// simply because getSize() function already heals the
    			// object.
    			delete(abandonedChildren, pathJoin(item.bucket, item.objectPath()))
    
    			if err != errIgnoreFileContrib {
    				into.addSizes(sz)
    				into.Objects++
    			}
    
    			wait() // wait to proceed to next entry.
    
    			return nil
    		})
    		if err != nil {
    			return err
    		}
    
    		if foundObjects && globalIsErasure {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 47.4K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg go/token, method (*File) SetLines([]int) bool
    pkg go/token, method (*File) SetLinesForContent([]uint8)
    pkg go/token, method (*File) Size() int
    pkg go/token, method (*FileSet) AddFile(string, int, int) *File
    pkg go/token, method (*FileSet) Base() int
    pkg go/token, method (*FileSet) File(Pos) *File
    pkg go/token, method (*FileSet) Iterate(func(*File) bool)
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top