Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for EIO (0.02 sec)

  1. cmd/xl-storage-errors.go

    func isSysErrInvalidArg(err error) bool {
    	return errors.Is(err, syscall.EINVAL)
    }
    
    // Input/output error
    func isSysErrIO(err error) bool {
    	return errors.Is(err, syscall.EIO)
    }
    
    // Check if the given error corresponds to EISDIR (is a directory).
    func isSysErrIsDir(err error) bool {
    	return errors.Is(err, syscall.EISDIR)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/go/terminal_test.go

    	cmd.Env = append(cmd.Environ(), "GO_TEST_TERMINAL_PASSTHROUGH=1")
    	cmd.Stdout = w
    	cmd.Stderr = w
    
    	// The behavior of reading from a PTY after the child closes it is very
    	// strange: on Linux, Read returns EIO, and on at least some versions of
    	// macOS, unread output may be discarded (see https://go.dev/issue/57141).
    	//
    	// To avoid that situation, we keep the child process running until the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 18:18:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_freebsd.go

    	*basep = uintptr(base)
    	if base>>32 != 0 {
    		// We can't stuff the base back into a uintptr, so any
    		// future calls would be suspect. Generate an error.
    		// EIO is allowed by getdirentries.
    		err = EIO
    	}
    	return
    }
    
    func Mknod(path string, mode uint32, dev uint64) (err error) {
    	return mknodat(_AT_FDCWD, path, mode, dev)
    }
    
    /*
     * Exposed directly
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    	if unsafe.Sizeof(*basep) == 8 {
    		return
    	}
    	if off>>32 != 0 {
    		// We can't stuff the offset back into a uintptr, so any
    		// future calls would be suspect. Generate an error.
    		// EIO is allowed by getdirentries.
    		err = EIO
    	}
    	return
    }
    
    //sys	Getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    
    // TODO
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    	*basep = uintptr(base)
    	if base>>32 != 0 {
    		// We can't stuff the base back into a uintptr, so any
    		// future calls would be suspect. Generate an error.
    		// EIO is allowed by getdirentries.
    		err = EIO
    	}
    	return
    }
    
    func Mknod(path string, mode uint32, dev uint64) (err error) {
    	return Mknodat(AT_FDCWD, path, mode, dev)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	EIDRM           = syscall.Errno(0x24)
    	EILSEQ          = syscall.Errno(0x74)
    	EINPROGRESS     = syscall.Errno(0x37)
    	EINTR           = syscall.Errno(0x4)
    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x4b)
    	EISDIR          = syscall.Errno(0x15)
    	EL2HLT          = syscall.Errno(0x2c)
    	EL2NSYNC        = syscall.Errno(0x26)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	EIDRM           = syscall.Errno(0x24)
    	EILSEQ          = syscall.Errno(0x58)
    	EINPROGRESS     = syscall.Errno(0x96)
    	EINTR           = syscall.Errno(0x4)
    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x85)
    	EISDIR          = syscall.Errno(0x15)
    	EL2HLT          = syscall.Errno(0x2c)
    	EL2NSYNC        = syscall.Errno(0x26)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	EIDRM           = syscall.Errno(0x24)
    	EILSEQ          = syscall.Errno(0x74)
    	EINPROGRESS     = syscall.Errno(0x37)
    	EINTR           = syscall.Errno(0x4)
    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x4b)
    	EISDIR          = syscall.Errno(0x15)
    	EL2HLT          = syscall.Errno(0x2c)
    	EL2NSYNC        = syscall.Errno(0x26)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	EIDRM           = syscall.Errno(0x52)
    	EILSEQ          = syscall.Errno(0x56)
    	EINPROGRESS     = syscall.Errno(0x24)
    	EINTR           = syscall.Errno(0x4)
    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x63)
    	ELOOP           = syscall.Errno(0x3e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go

    	EIDRM           = syscall.Errno(0x59)
    	EILSEQ          = syscall.Errno(0x54)
    	EINPROGRESS     = syscall.Errno(0x24)
    	EINTR           = syscall.Errno(0x4)
    	EINVAL          = syscall.Errno(0x16)
    	EIO             = syscall.Errno(0x5)
    	EIPSEC          = syscall.Errno(0x52)
    	EISCONN         = syscall.Errno(0x38)
    	EISDIR          = syscall.Errno(0x15)
    	ELAST           = syscall.Errno(0x5f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
Back to top