Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ENAMETOOLONG (0.05 sec)

  1. 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)
    }
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. 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
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  3. 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
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. 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
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
Back to top