Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ss (0.27 sec)

  1. cmd/site-replication.go

    		latestPolicyStat         srPolicyStatsSummary
    	)
    	for dID, ss := range ps {
    		if lastUpdate.IsZero() {
    			lastUpdate = ss.policy.UpdatedAt
    			latestID = dID
    			latestPolicyStat = ss
    		}
    		if !ss.policy.UpdatedAt.IsZero() && ss.policy.UpdatedAt.After(lastUpdate) {
    			lastUpdate = ss.policy.UpdatedAt
    			latestID = dID
    			latestPolicyStat = ss
    		}
    	}
    	if latestID != globalDeploymentID() {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  2. cmd/admin-handlers.go

    			partialWrite(healthInfo)
    
    			peerSysServices := globalNotificationSys.GetSysServices(healthCtx)
    			for _, ss := range peerSysServices {
    				anonymizeAddr(&ss)
    				healthInfo.Sys.SysServices = append(healthInfo.Sys.SysServices, ss)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    	// collect all realtime metrics except disk
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top