- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for encLogIf (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/logging.go
logger.LogIf(ctx, "ilm", err, errKind...) } func ilmLogOnceIf(ctx context.Context, err error, id string, errKind ...any) { logger.LogOnceIf(ctx, "ilm", err, id, errKind...) } func encLogIf(ctx context.Context, err error, errKind ...any) { logger.LogIf(ctx, "encryption", err, errKind...) } func encLogOnceIf(ctx context.Context, err error, id string, errKind ...any) {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 6.8K bytes - Click Count (0) -
cmd/encryption-v1.go
} if _, encrypted := crypto.IsEncrypted(o.UserDefined); encrypted { decrypted, err := o.metadataDecrypter(h)("object-checksum", data) if err != nil { if !errors.Is(err, crypto.ErrSecretKeyMismatch) { encLogIf(GlobalContext, err) } return } data = decrypted } cs := hash.ReadPartCheckSums(data) if len(cs) == len(o.Parts) { for i := range o.Parts { o.Parts[i].Checksums = cs[i]
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 38K bytes - Click Count (0)