- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,334 for error (0.03 sec)
-
internal/crypto/error.go
func Errorf(format string, a ...interface{}) error { e := fmt.Errorf(format, a...) ee := Error{} ee.msg = e.Error() ee.cause = errors.Unwrap(e) return ee } // Unwrap the internal error. func (e Error) Unwrap() error { return e.cause } // Error 'error' compatible method. func (e Error) Error() string { if e.msg == "" { return "crypto: cause <nil>" } return e.msg } var (
Registered: 2025-05-25 19:28 - Last Modified: 2024-03-28 17:44 - 4.4K bytes - Viewed (0) -
cni/pkg/nodeagent/error.go
package nodeagent import ( "errors" "fmt" ) // An error on pod add that the ambient informer should not // attempt to retry var ErrNonRetryableAdd = errors.New("pod add cannot be retried") type NonRetryableAddError struct { inner error } func (e *NonRetryableAddError) Error() string { return fmt.Sprintf("%s: %v", ErrNonRetryableAdd.Error(), e.inner) }
Registered: 2025-05-28 22:53 - Last Modified: 2025-01-23 01:41 - 1.1K bytes - Viewed (0) -
internal/bucket/lifecycle/error.go
package lifecycle import ( "fmt" ) // Error is the generic type for any error happening during tag // parsing. type Error struct { err error } // Errorf - formats according to a format specifier and returns // the string as a value that satisfies error of type tagging.Error func Errorf(format string, a ...interface{}) error { return Error{err: fmt.Errorf(format, a...)} } // Unwrap the internal error.
Registered: 2025-05-25 19:28 - Last Modified: 2021-06-01 21:59 - 1.3K bytes - Viewed (0) -
internal/bucket/versioning/error.go
package versioning import ( "fmt" ) // Error is the generic type for any error happening during tag // parsing. type Error struct { err error } // Errorf - formats according to a format specifier and returns // the string as a value that satisfies error of type tagging.Error func Errorf(format string, a ...interface{}) error { return Error{err: fmt.Errorf(format, a...)} } // Unwrap the internal error.
Registered: 2025-05-25 19:28 - Last Modified: 2021-06-01 21:59 - 1.3K bytes - Viewed (0) -
internal/bucket/replication/error.go
package replication import ( "fmt" ) // Error is the generic type for any error happening during tag // parsing. type Error struct { err error } // Errorf - formats according to a format specifier and returns // the string as a value that satisfies error of type tagging.Error func Errorf(format string, a ...interface{}) error { return Error{err: fmt.Errorf(format, a...)} } // Unwrap the internal error.
Registered: 2025-05-25 19:28 - Last Modified: 2021-06-01 21:59 - 1.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/error/error.jsp
type="text/css" /> <link href="${fe:url('/css/style.css')}" rel="stylesheet" type="text/css" /> <link href="${fe:url('/css/font-awesome.min.css')}" rel="stylesheet" type="text/css" /> </head> <body class="error"> <jsp:include page="../header.jsp" /> <main class="container"> <div class="text-center"> <h2> <la:message key="labels.error_title" /> </h2> <div> <la:info id="msg" message="true">
Registered: 2025-05-26 08:04 - Last Modified: 2025-01-18 12:09 - 1.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/error/error.jsp
type="text/css" /> <link href="${fe:url('/css/style.css')}" rel="stylesheet" type="text/css" /> <link href="${fe:url('/css/font-awesome.min.css')}" rel="stylesheet" type="text/css" /> </head> <body class="error"> <jsp:include page="../header.jsp" /> <main class="container"> <div class="text-center"> <h2> <la:message key="labels.error_title" /> </h2> <div> <la:info id="msg" message="true">
Registered: 2025-05-26 08:04 - Last Modified: 2025-01-18 12:09 - 1.6K bytes - Viewed (0) -
docs/bucket/replication/sio-error.sh
Poorna <******@****.***> 1716056341 -0700
Registered: 2025-05-25 19:28 - Last Modified: 2024-05-18 18:19 - 1.7K bytes - Viewed (0) -
cmd/typed-errors.go
// error returned when temporary account is not found var errNoSuchTempAccount = errors.New("Specified temporary account does not exist") // error returned when access key is not found var errNoSuchAccessKey = errors.New("Specified access key does not exist") // error returned in IAM subsystem when an account doesn't exist.
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-16 07:34 - 5.9K bytes - Viewed (0) -
internal/hash/errors.go
type SizeTooLarge struct { Want int64 Got int64 } func (e SizeTooLarge) Error() string { return fmt.Sprintf("Size large: got %d, want %d", e.Got, e.Want) } // SizeMismatch error size mismatch type SizeMismatch struct { Want int64 Got int64 } func (e SizeMismatch) Error() string { return fmt.Sprintf("Size mismatch: got %d, want %d", e.Got, e.Want) }
Registered: 2025-05-25 19:28 - Last Modified: 2023-05-15 21:08 - 2.4K bytes - Viewed (0)