Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of about 10,000 for perror (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/net/util_test.go

    			t.Errorf("Expect equality of %s and %s be to %v", tc.ipnet1.String(), tc.ipnet2.String(), tc.expect)
    		}
    	}
    }
    
    func TestIsConnectionRefused(t *testing.T) {
    	testCases := []struct {
    		err    error
    		expect bool
    	}{
    		{
    			&url.Error{Err: &net.OpError{Err: syscall.ECONNRESET}},
    			false,
    		},
    		{
    			&url.Error{Err: &net.OpError{Err: syscall.ECONNREFUSED}},
    			true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. docs/ja/docs/tutorial/handling-errors.md

    }
    ```
    
    以下のようなテキスト版を取得します:
    
    ```
    1 validation error
    path -> item_id
      value is not a valid integer (type=type_error.integer)
    ```
    
    #### `RequestValidationError`と`ValidationError`
    
    !!! warning "注意"
        これらは今のあなたにとって重要でない場合は省略しても良い技術的な詳細です。
    
    `RequestValidationError`はPydanticの<a href="https://docs.pydantic.dev/latest/concepts/models/#error-handling" class="external-link" target="_blank">`ValidationError`</a>のサブクラスです。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/net/dial.go

    				// we just got an error on the primary path, so start
    				// the fallback immediately (in 0 nanoseconds).
    				fallbackTimer.Reset(0)
    			}
    		}
    	}
    }
    
    // dialSerial connects to a list of addresses in sequence, returning
    // either the first successful connection, or the first error.
    func (sd *sysDialer) dialSerial(ctx context.Context, ras addrList) (Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt

    # Checks that source debug information is used in the output error message.
    # CHECK: error: 'tf.Add' op operands don't have broadcast-compatible shapes
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
        key: "shape"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:00:09 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    # info. It should be an error if VCS stamps are requested explicitly with
    # '-buildvcs' (since we know the VCS metadata exists), but not an error
    # with '-buildvcs=auto'.
    
    go build -o sub.exe ./sub
    go version -m sub.exe
    ! stdout '^\tbuild\tvcs'
    
    ! go build -buildvcs -o sub.exe ./sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. src/net/error_unix_test.go

    package net
    
    import (
    	"errors"
    	"os"
    	"syscall"
    )
    
    var (
    	errOpNotSupported = syscall.EOPNOTSUPP
    
    	abortedConnRequestErrors = []error{syscall.ECONNABORTED} // see accept in fd_unix.go
    )
    
    func isPlatformError(err error) bool {
    	_, ok := err.(syscall.Errno)
    	return ok
    }
    
    func samePlatformError(err, want error) bool {
    	if op, ok := err.(*OpError); ok {
    		err = op.Err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:59:22 UTC 2023
    - 723 bytes
    - Viewed (0)
  7. cmd/typed-errors.go

    // error returned when temporary account is not found
    var errNoSuchTempAccount = errors.New("Specified temporary account does not exist")
    
    // error returned in IAM subsystem when an account doesn't exist.
    var errNoSuchAccount = errors.New("Specified account does not exist")
    
    // error returned in IAM subsystem when groups doesn't exist.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/handling-errors.md

    }
    ```
    
    👆 🔜 🤚 ✍ ⏬, ⏮️:
    
    ```
    1 validation error
    path -> item_id
      value is not a valid integer (type=type_error.integer)
    ```
    
    #### `RequestValidationError` 🆚 `ValidationError`
    
    !!! warning
        👫 📡 ℹ 👈 👆 💪 🚶 🚥 ⚫️ 🚫 ⚠ 👆 🔜.
    
    `RequestValidationError` 🎧-🎓 Pydantic <a href="https://docs.pydantic.dev/latest/concepts/models/#error-handling" class="external-link" target="_blank">`ValidationError`</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/handling-errors.md

    **FastAPI** uses it so that, if you use a Pydantic model in `response_model`, and your data has an error, you will see the error in your log.
    
    But the client/user will not see it. Instead, the client will receive an "Internal Server Error" with a HTTP status code `500`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/go/doc/testdata/error2.0.golden

    // 
    PACKAGE error2
    
    IMPORTPATH
    	testdata/error2
    
    FILENAMES
    	testdata/error2.go
    
    TYPES
    	// 
    	type I0 interface {
    		// contains filtered or unexported methods
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// contains filtered or unexported methods
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 337 bytes
    - Viewed (0)
Back to top