Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for error2 (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/errors.go

    */
    
    package mergepatch
    
    import (
    	"errors"
    	"fmt"
    	"reflect"
    )
    
    var (
    	ErrBadJSONDoc                           = errors.New("invalid JSON document")
    	ErrNoListOfLists                        = errors.New("lists of lists are not supported")
    	ErrBadPatchFormatForPrimitiveList       = errors.New("invalid patch format of primitive list")
    	ErrBadPatchFormatForRetainKeys          = errors.New("invalid patch format of retainKeys")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 13:12:11 UTC 2017
    - 3.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/errors.go

    func _() {
    	0 /* ERRORx "0 .* is not used" */
    	0 /* ERRORx "0 .* is not used" */
    	0 // ERRORx "0 .* is not used"
    	0 // ERRORx "0 .* is not used"
    }
    
    // Don't report spurious errors as a consequence of earlier errors.
    // Add more tests as needed.
    func _() {
    	if err := foo /* ERROR "undefined" */ (); err != nil /* "no error here" */ {}
    }
    
    // Use unqualified names for package-local objects.
    type T struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/checkpointmanager/errors/errors.go

    limitations under the License.
    */
    
    package errors
    
    import "fmt"
    
    // ErrCorruptCheckpoint error is reported when checksum does not match
    var ErrCorruptCheckpoint = fmt.Errorf("checkpoint is corrupted")
    
    // ErrCheckpointNotFound is reported when checkpoint is not found for a given key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 886 bytes
    - Viewed (0)
  4. 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: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/fmt/errors.go

    package fmt
    
    import (
    	"errors"
    	"slices"
    )
    
    // Errorf formats according to a format specifier and returns the string as a
    // value that satisfies error.
    //
    // If the format specifier includes a %w verb with an error operand,
    // the returned error will implement an Unwrap method returning the operand.
    // If there is more than one %w verb, the returned error will implement an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/errors/errors.go

    type Matcher func(error) bool
    
    // FilterOut removes all errors that match any of the matchers from the input
    // error.  If the input is a singular error, only that error is tested.  If the
    // input implements the Aggregate interface, the list of errors will be
    // processed recursively.
    //
    // This can be used, for example, to remove known-OK errors (such as io.EOF or
    // os.PathNotFound) from a list of errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/errors.go

    }
    
    // InternalError renders a simple internal error
    func InternalError(w http.ResponseWriter, req *http.Request, err error) {
    	http.Error(w, sanitizer.Replace(fmt.Sprintf("Internal Server Error: %q: %v", req.RequestURI, err)),
    		http.StatusInternalServerError)
    	utilruntime.HandleError(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 16:18:47 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  8. src/go/types/errors.go

    // An errorDesc describes part of a type-checking error.
    type errorDesc struct {
    	posn positioner
    	msg  string
    }
    
    // An error_ represents a type-checking error.
    // A new error_ is created with Checker.newError.
    // To report an error_, call error_.report.
    type error_ struct {
    	check *Checker
    	desc  []errorDesc
    	code  Code
    	soft  bool // TODO(gri) eventually determine this from an error code
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    // IsAlreadyExists determines if the err is an error which indicates that a specified resource already exists.
    // It supports wrapped errors and returns false when the error is nil.
    func IsAlreadyExists(err error) bool {
    	return ReasonForError(err) == metav1.StatusReasonAlreadyExists
    }
    
    // IsConflict determines if the err is an error which indicates the provided update conflicts.
    // It supports wrapped errors and returns false when the error is nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/admission/errors.go

    package admission
    
    import (
    	"errors"
    	"fmt"
    
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    )
    
    const (
    	ErrorReasonUnexpected = "UnexpectedAdmissionError"
    )
    
    type Error interface {
    	Error() string
    	Type() string
    }
    
    type unexpectedAdmissionError struct{ Err error }
    
    var _ Error = (*unexpectedAdmissionError)(nil)
    
    func (e *unexpectedAdmissionError) Error() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 21:15:37 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top