Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for addStats (0.1 sec)

  1. cmd/tier-last-day-stats.go

    	"time"
    
    	"github.com/minio/madmin-go/v3"
    )
    
    //go:generate msgp -file=$GOFILE -unexported
    
    type lastDayTierStats struct {
    	Bins      [24]tierStats
    	UpdatedAt time.Time
    }
    
    func (l *lastDayTierStats) addStats(ts tierStats) {
    	now := time.Now()
    	l.forwardTo(now)
    
    	nowIdx := now.Hour()
    	l.Bins[nowIdx] = l.Bins[nowIdx].add(ts)
    }
    
    // forwardTo moves time to t, clearing entries between last update and t.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. cmd/bucket-lifecycle.go

    	t.lastDayMu.Lock()
    	defer t.lastDayMu.Unlock()
    
    	if _, ok := t.lastDayStats[tier]; !ok {
    		t.lastDayStats[tier] = &lastDayTierStats{}
    	}
    	t.lastDayStats[tier].addStats(ts)
    }
    
    func (t *transitionState) getDailyAllTierStats() DailyAllTierStats {
    	t.lastDayMu.RLock()
    	defer t.lastDayMu.RUnlock()
    
    	res := make(DailyAllTierStats, len(t.lastDayStats))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/match.go

    			t.RegionID = Region(x.region)
    		}
    		return true
    	}
    	return false
    }
    
    // Maximize returns a new tag with missing tags filled in.
    func (t Tag) Maximize() (Tag, error) {
    	return addTags(t)
    }
    
    func addTags(t Tag) (Tag, error) {
    	// We leave private use identifiers alone.
    	if t.IsPrivateUse() {
    		return t, nil
    	}
    	if t.ScriptID != 0 && t.RegionID != 0 {
    		if t.LangID != 0 {
    			// already fully specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    		if t.RegionID == 0 && t.ScriptID != 0 && t.LangID != 0 {
    			base, _ := addTags(Tag{LangID: t.LangID})
    			if base.ScriptID == t.ScriptID {
    				return Tag{LangID: t.LangID}
    			}
    		}
    		return t
    	}
    	if t.LangID != 0 {
    		if t.RegionID != 0 {
    			maxScript := t.ScriptID
    			if maxScript == 0 {
    				max, _ := addTags(t)
    				maxScript = max.ScriptID
    			}
    
    			for i := range parents {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/go/printer/testdata/expressions.input

    	// respect source lines in multi-line expressions
    	if cc.negate && len(cc.ranges) == 2 &&
    		cc.ranges[0] == '\n' && cc.ranges[1] == '\n' {
    		nl := new(_NotNl)
    		p.re.add(nl)
    	}
    }
    
    
    func addState(s []state, inst instr, match []int) {
    	// handle comments correctly in multi-line expressions
    	for i := 0; i < l; i++ {
    		if s[i].inst.index() == index && // same instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  6. src/go/printer/testdata/expressions.golden

    	// respect source lines in multi-line expressions
    	if cc.negate && len(cc.ranges) == 2 &&
    		cc.ranges[0] == '\n' && cc.ranges[1] == '\n' {
    		nl := new(_NotNl)
    		p.re.add(nl)
    	}
    }
    
    func addState(s []state, inst instr, match []int) {
    	// handle comments correctly in multi-line expressions
    	for i := 0; i < l; i++ {
    		if s[i].inst.index() == index &&	// same instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  7. src/go/printer/testdata/expressions.raw

    	// respect source lines in multi-line expressions
    	if cc.negate && len(cc.ranges) == 2 &&
    		cc.ranges[0] == '\n' && cc.ranges[1] == '\n' {
    		nl := new(_NotNl)
    		p.re.add(nl)
    	}
    }
    
    func addState(s []state, inst instr, match []int) {
    	// handle comments correctly in multi-line expressions
    	for i := 0; i < l; i++ {
    		if s[i].inst.index() == index &&	// same instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
Back to top