Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for perror (0.08 sec)

  1. internal/s3select/csv/errors.go

    }
    
    func (err *s3Error) Error() string {
    	return err.message
    }
    
    func errCSVParsingError(err error) *s3Error {
    	return &s3Error{
    		code:       "CSVParsingError",
    		message:    "Encountered an error parsing the CSV file. Check the file and try again.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errInvalidTextEncodingError() *s3Error {
    	return &s3Error{
    		code:       "InvalidTextEncoding",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/duperror.s

    // license that can be found in the LICENSE file.
    
    TEXT foo(SB), 0, $0
    	RET
    TEXT foo(SB), 0, $0 // ERROR "symbol foo redeclared"
    	RET
    
    GLOBL bar(SB), 0, $8
    GLOBL bar(SB), 0, $8 // ERROR "symbol bar redeclared"
    
    DATA bar+0(SB)/8, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 23:21:07 UTC 2022
    - 404 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/errors.go

    )
    
    func interpretListError(err error, paging bool, continueKey, keyPrefix string) error {
    	switch {
    	case err == etcdrpc.ErrCompacted:
    		if paging {
    			return handleCompactedErrorForPaging(continueKey, keyPrefix)
    		}
    		return errors.NewResourceExpired(expired)
    	}
    	return err
    }
    
    func handleCompactedErrorForPaging(continueKey, keyPrefix string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 15:59:41 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. src/os/error.go

    	if err == nil {
    		return nil
    	}
    	return &SyscallError{syscall, err}
    }
    
    // IsExist returns a boolean indicating whether the error is known to report
    // that a file or directory already exists. It is satisfied by [ErrExist] as
    // well as some syscall errors.
    //
    // This function predates [errors.Is]. It only supports errors returned by
    // the os package. New code should use errors.Is(err, fs.ErrExist).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/link/internal/ld/errors.go

    					haveABI = abi
    				}
    			}
    		}
    
    		// Give a special error message for main symbol (see #24809).
    		if name == "main.main" {
    			reporter.Errorf(s, "function main is undeclared in the main package")
    		} else if haveABI != ^obj.ABI(0) {
    			reporter.Errorf(s, "relocation target %s not defined for %s (but is defined for %s)", name, reqABI, haveABI)
    		} else {
    			reporter.Errorf(s, "relocation target %s not defined", name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:38:08 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. internal/grid/errors.go

    	ErrIncorrectSequence = errors.New("out-of-sequence item received")
    )
    
    // ErrResponse is a remote error response.
    type ErrResponse struct {
    	msg string
    }
    
    func (e ErrResponse) Error() string {
    	return fmt.Sprintf("remote: %s", e.msg)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/errors.go

    limitations under the License.
    */
    
    package garbagecollector
    
    import (
    	"fmt"
    )
    
    type restMappingError struct {
    	kind    string
    	version string
    }
    
    func (r *restMappingError) Error() string {
    	versionKind := fmt.Sprintf("%s/%s", r.version, r.kind)
    	return fmt.Sprintf("unable to get REST mapping for %s.", versionKind)
    }
    
    // Message prints more details
    func (r *restMappingError) Message() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 28 14:00:10 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/errors.mlir

    // RUN: tf-tfrt-opt -tf-to-tfrt %s -split-input-file -verify-diagnostics
    
    // expected-error @+1 {{failed to legalize operation 'func.func' that was explicitly marked illegal}}
    func.func @test_identity_wrong_type(%arg0: tensor<4x2x!tf_type.string>) -> tensor<4x2x!tf_type.stringref> {
      %0 = "tf.SomeOp"(%arg0) : (tensor<4x2x!tf_type.string>) -> tensor<4x2x!tf_type.stringref>
      func.return %0 : tensor<4x2x!tf_type.stringref>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:51:48 UTC 2022
    - 428 bytes
    - Viewed (0)
  10. pkg/kubelet/errors.go

    limitations under the License.
    */
    
    package kubelet
    
    import "errors"
    
    const (
    	// NetworkNotReadyErrorMsg is used to describe the error that network is not ready
    	NetworkNotReadyErrorMsg = "network is not ready"
    )
    
    var (
    	// ErrNetworkUnknown indicates the network state is unknown
    	ErrNetworkUnknown = errors.New("network state unknown")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 02:40:51 UTC 2019
    - 876 bytes
    - Viewed (0)
Back to top