Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for failedCount (0.28 sec)

  1. cmd/data-usage-cache.go

    				FailedSize:      stat.FailedSize + st.FailedSize,
    				ReplicatedSize:  stat.ReplicatedSize + st.ReplicatedSize,
    				PendingCount:    stat.PendingCount + st.PendingCount,
    				FailedCount:     stat.FailedCount + st.FailedCount,
    				ReplicatedCount: stat.ReplicatedCount + st.ReplicatedCount,
    			}
    		}
    	}
    
    	for i, v := range other.ObjSizes[:] {
    		e.ObjSizes[i] += v
    	}
    
    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/bucket-stats_gen.go

    		case "PendingCount":
    			z.PendingCount, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "PendingCount")
    				return
    			}
    		case "FailedCount":
    			z.FailedCount, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "FailedCount")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  3. cmd/bucket-replication-utils_gen.go

    		case "FailedSize":
    			z.FailedSize, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "FailedSize")
    				return
    			}
    		case "FailedCount":
    			z.FailedCount, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "FailedCount")
    				return
    			}
    		case "ReplicatedCount":
    			z.ReplicatedCount, err = dc.ReadInt64()
    			if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 61.1K bytes
    - Viewed (0)
  4. cmd/site-replication-utils.go

    		ResyncID:        rst.resyncID,
    		DeplID:          rs.DeplID,
    		ReplicatedSize:  rs.ReplicatedSize,
    		ReplicatedCount: rs.ReplicatedCount,
    		FailedSize:      rs.FailedSize,
    		FailedCount:     rs.FailedCount,
    		Bucket:          rs.Bucket,
    		Object:          rs.Object,
    		NumBuckets:      int64(rs.TotBuckets),
    	}
    	for b, st := range rs.BucketStatuses {
    		if st == ResyncFailed {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 8.9K bytes
    - Viewed (1)
  5. cmd/data-usage-cache_gen.go

    		return
    	}
    	z.FailedSize, err = dc.ReadUint64()
    	if err != nil {
    		err = msgp.WrapError(err, "FailedSize")
    		return
    	}
    	z.FailedCount, err = dc.ReadUint64()
    	if err != nil {
    		err = msgp.WrapError(err, "FailedCount")
    		return
    	}
    	z.PendingCount, err = dc.ReadUint64()
    	if err != nil {
    		err = msgp.WrapError(err, "PendingCount")
    		return
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 100.8K bytes
    - Viewed (0)
  6. cmd/bucket-stats.go

    	// Total number of pending operations including metadata updates
    	PendingCount int64 `json:"pendingReplicationCount"`
    	// Total number of failed operations including metadata updates
    	FailedCount int64 `json:"failedReplicationCount"`
    }
    
    func newBucketReplicationStats() *BucketReplicationStats {
    	return &BucketReplicationStats{
    		Stats: make(map[string]*BucketReplicationStat),
    	}
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  7. cmd/data-scanner.go

    			tgtSizeS.pendingSize += oi.Size
    			sizeS.pendingCount++
    			sizeS.pendingSize += oi.Size
    		case replication.Failed:
    			tgtSizeS.failedSize += oi.Size
    			tgtSizeS.failedCount++
    			sizeS.failedSize += oi.Size
    			sizeS.failedCount++
    		case replication.Completed, replication.CompletedLegacy:
    			tgtSizeS.replicatedSize += oi.Size
    			tgtSizeS.replicatedCount++
    			sizeS.replicatedSize += oi.Size
    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)
  8. cmd/bucket-replication-handlers.go

    			EndTime:         st.LastUpdate,
    			ResyncStatus:    st.ResyncStatus.String(),
    			ReplicatedSize:  st.ReplicatedSize,
    			ReplicatedCount: st.ReplicatedCount,
    			FailedSize:      st.FailedSize,
    			FailedCount:     st.FailedCount,
    			Bucket:          st.Bucket,
    			Object:          st.Object,
    		})
    	}
    	data, err := json.Marshal(rinfo)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Oct 28 04:08:53 GMT 2023
    - 23.2K bytes
    - Viewed (0)
  9. cmd/bucket-replication-utils.go

    	// Completed size in bytes
    	ReplicatedSize int64 `json:"completedReplicationSize"`
    	// Failed size in bytes
    	FailedSize int64 `json:"failedReplicationSize"`
    	// Total number of failed operations
    	FailedCount int64 `json:"failedReplicationCount"`
    	// Total number of failed operations
    	ReplicatedCount int64 `json:"replicationCount"`
    	// Last bucket/object replicated.
    	Bucket string `json:"bucket,omitempty"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
  10. cmd/data-usage_test.go

    	}
    	e := want.find("abucket/dir2")
    	e.ReplicationStats = &replicationAllStats{
    		Targets: map[string]replicationStats{
    			"arn": {
    				PendingSize:    1,
    				ReplicatedSize: 2,
    				FailedSize:     3,
    				FailedCount:    5,
    				PendingCount:   6,
    			},
    		},
    	}
    	want.replace("abucket/dir2", "", *e)
    	var buf bytes.Buffer
    	err = want.serializeTo(&buf)
    	if err != nil {
    		t.Fatal(err)
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Mar 27 15:10:40 GMT 2024
    - 14.1K bytes
    - Viewed (0)
Back to top