Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ENOSPC (0.08 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.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)
  5. 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)
  6. 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)
Back to top