- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for isErrInvalidRange (0.06 seconds)
-
cmd/object-api-errors.go
// isErrMethodNotAllowed - Check if error type is MethodNotAllowed. func isErrMethodNotAllowed(err error) bool { var methodNotAllowed MethodNotAllowed return errors.As(err, &methodNotAllowed) } func isErrInvalidRange(err error) bool { if errors.Is(err, errInvalidRange) { return true } _, ok := err.(InvalidRange) return ok } // ReplicationPermissionCheck - Check if error type is ReplicationPermissionCheck.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 09 02:05:14 GMT 2024 - 22.1K bytes - Click Count (0)