Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for lastDayStats (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/notification.go

    	errs := make([]error, len(sys.allPeerClients))
    	lastDayStats := make([]DailyAllTierStats, len(sys.allPeerClients))
    	var wg sync.WaitGroup
    	for index := range sys.peerClients {
    		if sys.peerClients[index] == nil {
    			continue
    		}
    		wg.Add(1)
    		go func(index int) {
    			defer wg.Done()
    			lastDayStats[index], errs[index] = sys.peerClients[index].GetLastDayTierStats(ctx)
    		}(index)
    	}
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 46K bytes
    - Click Count (0)
Back to Top