Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for ErrorIs (0.1 sec)

  1. src/fmt/errors.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. cmd/typed-errors.go

    package cmd
    
    import (
    	"errors"
    )
    
    // errInvalidArgument means that input argument is invalid.
    var errInvalidArgument = errors.New("Invalid arguments specified")
    
    // errMethodNotAllowed means that method is not allowed.
    var errMethodNotAllowed = errors.New("Method not allowed")
    
    // errSignatureMismatch means signature did not match.
    var errSignatureMismatch = errors.New("Signature does not match")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/handling-errors.md

    The status codes in the 400 range mean that there was an error from the client.
    
    Remember all those **"404 Not Found"** errors (and jokes)?
    
    ## Use `HTTPException`
    
    To return HTTP responses with errors to the client you use `HTTPException`.
    
    ### Import `HTTPException`
    
    ```Python hl_lines="1"
    {!../../../docs_src/handling_errors/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/errors/wrap.go

    //
    // The tree consists of err itself, followed by the errors obtained by repeatedly
    // calling its Unwrap() error or Unwrap() []error method. When err wraps multiple
    // errors, As examines err followed by a depth-first traversal of its children.
    //
    // An error matches target if the error's concrete value is assignable to the value
    // pointed to by target, or if the error has a method As(any) bool such that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. cmd/admin-handler-utils.go

    				Description:    err.Error(),
    				HTTPStatusCode: http.StatusBadRequest,
    			}
    		case errors.Is(err, kes.ErrKeyExists):
    			apiErr = APIError{
    				Code:           "XMinioKMSKeyExists",
    				Description:    err.Error(),
    				HTTPStatusCode: http.StatusConflict,
    			}
    
    		// Tier admin API errors
    		case errors.Is(err, madmin.ErrTierNameEmpty):
    			apiErr = APIError{
    				Code:           "XMinioAdminTierNameEmpty",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    func (o CustomResourceDefinitionsServerOptions) Validate() error {
    	errors := []error{}
    	errors = append(errors, o.ServerRunOptions.Validate()...)
    	errors = append(errors, o.RecommendedOptions.Validate()...)
    	errors = append(errors, o.APIEnablement.Validate(apiserver.Scheme)...)
    	return utilerrors.NewAggregate(errors)
    }
    
    // Complete fills in missing options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/validation_test.go

    		object      string
    		includeRoot bool
    		errors      []validationMatch
    	}{
    		{name: "empty", object: `{}`, errors: []validationMatch{}},
    		{name: "include root", object: `{}`, includeRoot: true, errors: []validationMatch{
    			required("apiVersion"),
    			required("kind"),
    		}},
    		{name: "embedded", object: `
    {
      "embedded": {}
    }`, errors: []validationMatch{
    			required("embedded", "apiVersion"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/errors_test.go

    					continue
    				}
    				errors = append(errors, re)
    			}
    
    			if _, frag, ok := bytes.Cut(line, []byte("ERROR MESSAGE: ")); ok {
    				re, err := regexp.Compile(string(frag))
    				if err != nil {
    					t.Errorf("Invalid regexp after `ERROR MESSAGE: `: %#q", frag)
    					continue
    				}
    				errors = append(errors, re)
    			}
    		}
    		if len(errors) == 0 {
    			t.Fatalf("cannot find ERROR HERE")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/runtime/runtime.go

    */
    
    // Package runtime provides the kubeadm container runtime implementation.
    package runtime
    
    import (
    	"context"
    	"encoding/json"
    	"strings"
    	"time"
    
    	"github.com/pkg/errors"
    	errorsutil "k8s.io/apimachinery/pkg/util/errors"
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. cmd/metrics-realtime.go

    		}
    		cm, err := c.Times(false)
    		if err != nil {
    			m.Errors = append(m.Errors, fmt.Sprintf("%s: %v (cpuTimes)", byHostName, err.Error()))
    		} else {
    			// not collecting per-cpu stats, so there will be only one element
    			if len(cm) == 1 {
    				m.Aggregated.CPU.TimesStat = &cm[0]
    			} else {
    				m.Errors = append(m.Errors, fmt.Sprintf("%s: Expected one CPU stat, got %d", byHostName, len(cm)))
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:16:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top