- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for checksumCombined (0.06 sec)
-
internal/hash/checksum_test.go
// Combine the raw checksums (this is what happens in CompleteMultipartUpload) var checksumCombined []byte checksumCombined = append(checksumCombined, part1Checksum.Raw...) checksumCombined = append(checksumCombined, part2Checksum.Raw...) checksumCombined = append(checksumCombined, part3Checksum.Raw...) // Create the final checksum (checksum of the combined checksums)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 22 14:15:21 UTC 2025 - 7.1K bytes - Viewed (0) -
cmd/erasure-multipart.go
return oi, InvalidPart{ PartNumber: part.PartNumber, ExpETag: "<nil>", GotETag: err.Error(), } } } checksumCombined = append(checksumCombined, cs.Raw...) } // All parts except the last part has to be at least 5MB. if (i < len(parts)-1) && !isMinAllowedPartSize(currentFI.Parts[partIdx].ActualSize) { return oi, PartTooSmall{Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Oct 24 04:05:31 UTC 2025 - 47.1K bytes - Viewed (0)