- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for TargetReplicationResyncStatus (0.1 seconds)
-
cmd/bucket-replication-utils_gen_test.go
} } func BenchmarkMarshalMsgTargetReplicationResyncStatus(b *testing.B) { v := TargetReplicationResyncStatus{} b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { v.MarshalMsg(nil) } } func BenchmarkAppendMsgTargetReplicationResyncStatus(b *testing.B) { v := TargetReplicationResyncStatus{} bts := make([]byte, 0, v.Msgsize()) bts, _ = v.MarshalMsg(bts[0:0])
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 23K bytes - Click Count (0) -
cmd/bucket-replication-utils.go
return "Failed" case ResyncPending: return "Pending" case ResyncCanceled: return "Canceled" default: return "" } } // TargetReplicationResyncStatus status of resync of bucket for a specific target type TargetReplicationResyncStatus struct { StartTime time.Time `json:"startTime" msg:"st"` LastUpdate time.Time `json:"lastUpdated" msg:"lst"` // Resync ID assigned to this reset
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 26.1K bytes - Click Count (0)