Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for bfredl (0.36 sec)

  1. internal/disk/stat_linux.go

    func GetInfo(path string, firstTime bool) (info Info, err error) {
    	s := syscall.Statfs_t{}
    	err = syscall.Statfs(path, &s)
    	if err != nil {
    		return Info{}, err
    	}
    	reservedBlocks := s.Bfree - s.Bavail
    	info = Info{
    		Total: uint64(s.Frsize) * (s.Blocks - reservedBlocks),
    		Free:  uint64(s.Frsize) * s.Bavail,
    		Files: s.Files,
    		Ffree: s.Ffree,
    		//nolint:unconvert
    		FSType: getFSType(int64(s.Type)),
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. RELEASE.md

    Clayne Robison, Colle, Dan Ganea, David Norman, David Refaeli, dengziming, Diego
    Caballero, Divyanshu, djshen, Douman, Duncan Riach, EFanZh, Elena Zhelezina,
    Eric Schweitz, Evgenii Zheltonozhskii, Fei Hu, fo40225, Fred Reiss, Frederic
    Bastien, Fredrik Knutsson, fsx950223, fwcore, George Grzegorz Pawelczak, George
    Sterpu, Gian Marco Iodice, Giorgio Arena, giuros01, Gomathi Ramamurthy, Guozhong
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  3. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type Statfs_t struct, Asyncwrites uint64
    pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bavail int64
    pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bfree uint64
    pkg syscall (freebsd-386-cgo), type Statfs_t struct, Blocks uint64
    pkg syscall (freebsd-386-cgo), type Statfs_t struct, Bsize uint64
    pkg syscall (freebsd-386-cgo), type Statfs_t struct, Charspare [80]int8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  4. api/go1.txt

    pkg syscall (darwin-386), type Stat_t struct, Uid uint32
    pkg syscall (darwin-386), type Statfs_t struct
    pkg syscall (darwin-386), type Statfs_t struct, Bavail uint64
    pkg syscall (darwin-386), type Statfs_t struct, Bfree uint64
    pkg syscall (darwin-386), type Statfs_t struct, Blocks uint64
    pkg syscall (darwin-386), type Statfs_t struct, Bsize uint32
    pkg syscall (darwin-386), type Statfs_t struct, Ffree uint64
    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)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), type Stat_t struct, Uid uint32
    pkg syscall (darwin-arm64), type Statfs_t struct
    pkg syscall (darwin-arm64), type Statfs_t struct, Bavail uint64
    pkg syscall (darwin-arm64), type Statfs_t struct, Bfree uint64
    pkg syscall (darwin-arm64), type Statfs_t struct, Blocks uint64
    pkg syscall (darwin-arm64), type Statfs_t struct, Bsize uint32
    pkg syscall (darwin-arm64), type Statfs_t struct, Ffree uint64
    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), type Statfs_t struct, Asyncwrites uint64 #53466
    pkg syscall (freebsd-riscv64), type Statfs_t struct, Bavail int64 #53466
    pkg syscall (freebsd-riscv64), type Statfs_t struct, Bfree uint64 #53466
    pkg syscall (freebsd-riscv64), type Statfs_t struct, Blocks uint64 #53466
    pkg syscall (freebsd-riscv64), type Statfs_t struct, Bsize uint64 #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), type Statfs_t struct, Asyncwrites uint64
    pkg syscall (freebsd-arm64), type Statfs_t struct, Bavail int64
    pkg syscall (freebsd-arm64), type Statfs_t struct, Bfree uint64
    pkg syscall (freebsd-arm64), type Statfs_t struct, Blocks uint64
    pkg syscall (freebsd-arm64), type Statfs_t struct, Bsize uint64
    pkg syscall (freebsd-arm64), type Statfs_t struct, Charspare [80]int8
    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)
Back to top