- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for joinErrs (0.04 seconds)
-
cmd/erasure-object.go
opts := AuditLogOptions{ Event: "DeleteDanglingObject", Bucket: bucket, Object: object, VersionID: versionID, Tags: tags, } auditLogInternal(ctx, opts) } func joinErrs(errs []error) string { var s string for i := range s { if s != "" { s += "," } if errs[i] == nil { s += "<nil>" } else { s += errs[i].Error() } } return s }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 24 04:05:31 GMT 2025 - 80.4K bytes - Click Count (0) -
guava/src/com/google/common/base/Joiner.java
* useForNull} has no effect on the instance it is invoked on! You must store and use the new joiner * instance returned by the method. This makes joiners thread-safe, and safe to store as {@code * static final} constants. * * {@snippet : * // Bad! Do not do this! * Joiner joiner = Joiner.on(','); * joiner.skipNulls(); // does nothing!Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Apr 14 15:16:19 GMT 2025 - 21K bytes - Click Count (0)