Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ENAMETOOLONG (0.23 sec)

  1. cmd/xl-storage-errors_test.go

    package cmd
    
    import (
    	"os"
    	"runtime"
    	"syscall"
    	"testing"
    )
    
    func TestSysErrors(t *testing.T) {
    	pathErr := &os.PathError{Err: syscall.ENAMETOOLONG}
    	ok := isSysErrTooLong(pathErr)
    	if !ok {
    		t.Fatalf("Unexpected error expecting %s", syscall.ENAMETOOLONG)
    	}
    	pathErr = &os.PathError{Err: syscall.ENOTDIR}
    	ok = isSysErrNotDir(pathErr)
    	if !ok {
    		t.Fatalf("Unexpected error expecting %s", syscall.ENOTDIR)
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 23 18:58:53 GMT 2021
    - 1.7K bytes
    - Viewed (0)
  2. cmd/xl-storage-errors.go

    func isSysErrNotDir(err error) bool {
    	return errors.Is(err, syscall.ENOTDIR)
    }
    
    // Check if the given error corresponds to the ENAMETOOLONG (name too long).
    func isSysErrTooLong(err error) bool {
    	return errors.Is(err, syscall.ENAMETOOLONG)
    }
    
    // Check if the given error corresponds to the ELOOP (too many symlinks).
    func isSysErrTooManySymlinks(err error) bool {
    	return errors.Is(err, syscall.ELOOP)
    }
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Mar 06 16:56:29 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg syscall (darwin-386), const EMFILE = 24
    pkg syscall (darwin-386), const EMLINK = 31
    pkg syscall (darwin-386), const EMSGSIZE = 40
    pkg syscall (darwin-386), const EMULTIHOP = 95
    pkg syscall (darwin-386), const ENAMETOOLONG = 63
    pkg syscall (darwin-386), const ENEEDAUTH = 81
    pkg syscall (darwin-386), const ENETDOWN = 50
    pkg syscall (darwin-386), const ENETRESET = 52
    pkg syscall (darwin-386), const ENETUNREACH = 51
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const EMUL_MAXID ideal-int
    pkg syscall (netbsd-arm64-cgo), const EMULTIHOP = 94
    pkg syscall (netbsd-arm64-cgo), const EMULTIHOP Errno
    pkg syscall (netbsd-arm64-cgo), const ENAMETOOLONG = 63
    pkg syscall (netbsd-arm64-cgo), const ENEEDAUTH = 81
    pkg syscall (netbsd-arm64-cgo), const ENEEDAUTH Errno
    pkg syscall (netbsd-arm64-cgo), const ENETDOWN = 50
    pkg syscall (netbsd-arm64-cgo), const ENETRESET = 52
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const EMSGSIZE = 40
    pkg syscall (darwin-arm64), const EMULTIHOP = 95
    pkg syscall (darwin-arm64), const EMULTIHOP Errno
    pkg syscall (darwin-arm64), const ENAMETOOLONG = 63
    pkg syscall (darwin-arm64), const ENEEDAUTH = 81
    pkg syscall (darwin-arm64), const ENEEDAUTH Errno
    pkg syscall (darwin-arm64), const ENETDOWN = 50
    pkg syscall (darwin-arm64), const ENETRESET = 52
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const EMSGSIZE = 40 #53466
    pkg syscall (freebsd-riscv64), const EMULTIHOP = 90 #53466
    pkg syscall (freebsd-riscv64), const EMULTIHOP Errno #53466
    pkg syscall (freebsd-riscv64), const ENAMETOOLONG = 63 #53466
    pkg syscall (freebsd-riscv64), const ENEEDAUTH = 81 #53466
    pkg syscall (freebsd-riscv64), const ENEEDAUTH Errno #53466
    pkg syscall (freebsd-riscv64), const ENETDOWN = 50 #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), const EMSGSIZE = 40
    pkg syscall (freebsd-arm64), const EMULTIHOP = 90
    pkg syscall (freebsd-arm64), const EMULTIHOP Errno
    pkg syscall (freebsd-arm64), const ENAMETOOLONG = 63
    pkg syscall (freebsd-arm64), const ENEEDAUTH = 81
    pkg syscall (freebsd-arm64), const ENEEDAUTH Errno
    pkg syscall (freebsd-arm64), const ENETDOWN = 50
    pkg syscall (freebsd-arm64), const ENETRESET = 52
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall, const EISDIR Errno
    pkg syscall, const ELOOP Errno
    pkg syscall, const EMFILE Errno
    pkg syscall, const EMLINK Errno
    pkg syscall, const EMSGSIZE Errno
    pkg syscall, const ENAMETOOLONG Errno
    pkg syscall, const ENETDOWN Errno
    pkg syscall, const ENETRESET Errno
    pkg syscall, const ENETUNREACH Errno
    pkg syscall, const ENFILE Errno
    pkg syscall, const ENOBUFS Errno
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top