- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for cleanMinioInternalMetadataKeys (0.48 seconds)
-
cmd/utils.go
} ceil = numerator / denominator if numerator > 0 && numerator%denominator != 0 { ceil++ } return ceil } // cleanMinioInternalMetadataKeys removes X-Amz-Meta- prefix from minio internal // encryption metadata. func cleanMinioInternalMetadataKeys(metadata map[string]string) map[string]string { newMeta := make(map[string]string, len(metadata)) for k, v := range metadata {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 33K bytes - Click Count (0) -
cmd/api-response.go
m[xhttp.AmzServerSideEncryptionKmsContext] = kmsCtx } case crypto.SSEC: m[xhttp.AmzServerSideEncryptionCustomerAlgorithm] = xhttp.AmzEncryptionAES } var toRemove []string for k := range cleanMinioInternalMetadataKeys(m) { if stringsHasPrefixFold(k, ReservedMetadataPrefixLower) { // Do not need to send any internal metadata // values to client. toRemove = append(toRemove, k) continue }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 24 04:05:19 GMT 2025 - 35K bytes - Click Count (0)