Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ENOSPC (0.15 sec)

  1. cmd/xl-storage-errors.go

    package cmd
    
    import (
    	"errors"
    	"os"
    	"runtime"
    	"syscall"
    )
    
    // No space left on device error
    func isSysErrNoSpace(err error) bool {
    	return errors.Is(err, syscall.ENOSPC)
    }
    
    // Invalid argument, unsupported flags such as O_DIRECT
    func isSysErrInvalidArg(err error) bool {
    	return errors.Is(err, syscall.EINVAL)
    }
    
    // Input/output error
    func isSysErrIO(err error) bool {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    		targetPath2 = pathutil.Join(s.drivePath, minioMetaTmpDeletedBucket, mustGetUUID())
    		renameAll(encodeDirObject(filePath), targetPath2, pathutil.Join(s.drivePath, minioMetaBucket))
    	}
    
    	// ENOSPC is a valid error from rename(); remove instead of rename in that case
    	if errors.Is(err, errDiskFull) || isSysErrNoSpace(err) {
    		if recursive {
    			err = removeAll(filePath)
    		} else {
    			err = Remove(filePath)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:58:27 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg syscall (darwin-386), const ENOMEM = 12
    pkg syscall (darwin-386), const ENOMSG = 91
    pkg syscall (darwin-386), const ENOPOLICY = 103
    pkg syscall (darwin-386), const ENOPROTOOPT = 42
    pkg syscall (darwin-386), const ENOSPC = 28
    pkg syscall (darwin-386), const ENOSR = 98
    pkg syscall (darwin-386), const ENOSTR = 99
    pkg syscall (darwin-386), const ENOSYS = 78
    pkg syscall (darwin-386), const ENOTBLK = 15
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ENOMEM = 12
    pkg syscall (netbsd-arm64-cgo), const ENOMSG = 83
    pkg syscall (netbsd-arm64-cgo), const ENOPROTOOPT = 42
    pkg syscall (netbsd-arm64-cgo), const ENOSPC = 28
    pkg syscall (netbsd-arm64-cgo), const ENOSR = 90
    pkg syscall (netbsd-arm64-cgo), const ENOSR Errno
    pkg syscall (netbsd-arm64-cgo), const ENOSTR = 91
    pkg syscall (netbsd-arm64-cgo), const ENOSTR Errno
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const ENOMEM = 12
    pkg syscall (freebsd-arm64), const ENOMSG = 83
    pkg syscall (freebsd-arm64), const ENOPROTOOPT = 42
    pkg syscall (freebsd-arm64), const ENOSPC = 28
    pkg syscall (freebsd-arm64), const ENOSYS = 78
    pkg syscall (freebsd-arm64), const ENOTBLK = 15
    pkg syscall (freebsd-arm64), const ENOTCAPABLE = 93
    pkg syscall (freebsd-arm64), const ENOTCAPABLE Errno
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const ENOPOLICY = 103
    pkg syscall (darwin-arm64), const ENOPOLICY Errno
    pkg syscall (darwin-arm64), const ENOPROTOOPT = 42
    pkg syscall (darwin-arm64), const ENOSPC = 28
    pkg syscall (darwin-arm64), const ENOSR = 98
    pkg syscall (darwin-arm64), const ENOSR Errno
    pkg syscall (darwin-arm64), const ENOSTR = 99
    pkg syscall (darwin-arm64), const ENOSTR Errno
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const ENOMEM = 12 #53466
    pkg syscall (freebsd-riscv64), const ENOMSG = 83 #53466
    pkg syscall (freebsd-riscv64), const ENOPROTOOPT = 42 #53466
    pkg syscall (freebsd-riscv64), const ENOSPC = 28 #53466
    pkg syscall (freebsd-riscv64), const ENOSYS = 78 #53466
    pkg syscall (freebsd-riscv64), const ENOTBLK = 15 #53466
    pkg syscall (freebsd-riscv64), const ENOTCAPABLE = 93 #53466
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall, const ENOEXEC Errno
    pkg syscall, const ENOLCK Errno
    pkg syscall, const ENOMEM Errno
    pkg syscall, const ENOMSG Errno
    pkg syscall, const ENOPROTOOPT Errno
    pkg syscall, const ENOSPC Errno
    pkg syscall, const ENOSYS Errno
    pkg syscall, const ENOTBLK Errno
    pkg syscall, const ENOTCONN Errno
    pkg syscall, const ENOTDIR Errno
    pkg syscall, const ENOTEMPTY Errno
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top