Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sysStat (0.1 sec)

  1. src/archive/tar/stat_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package tar
    
    import (
    	"io/fs"
    	"os/user"
    	"runtime"
    	"strconv"
    	"sync"
    	"syscall"
    )
    
    func init() {
    	sysStat = statUnix
    }
    
    // userMap and groupMap caches UID and GID lookups for performance reasons.
    // The downside is that renaming uname or gname by the OS never takes effect.
    var userMap, groupMap sync.Map // map[int]string
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/archive/tar/common.go

    	case TypeFifo:
    		mode |= fs.ModeNamedPipe
    	}
    
    	return mode
    }
    
    func (fi headerFileInfo) String() string {
    	return fs.FormatFileInfo(fi)
    }
    
    // sysStat, if non-nil, populates h from system-dependent fields of fi.
    var sysStat func(fi fs.FileInfo, h *Header, doNameLookups bool) error
    
    const (
    	// Mode constants from the USTAR spec:
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Sep 13 21:03:27 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. api/except.txt

    pkg syscall (freebsd-386), const SYS_LSTAT = 190
    pkg syscall (freebsd-386), const SYS_LSTAT ideal-int
    pkg syscall (freebsd-386), const SYS_MKNODAT = 498
    pkg syscall (freebsd-386), const SYS_STAT = 188
    pkg syscall (freebsd-386), const SYS_STAT ideal-int
    pkg syscall (freebsd-386), const SYS_STATFS = 396
    pkg syscall (freebsd-386-cgo), const SYS_FSTAT = 189
    pkg syscall (freebsd-386-cgo), const SYS_FSTATAT = 493
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sun Jun 16 23:08:08 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_SOCKETPAIR ideal-int
    pkg syscall (freebsd-arm64), const SYS_SSTK = 70
    pkg syscall (freebsd-arm64), const SYS_SSTK ideal-int
    pkg syscall (freebsd-arm64), const SYS_STAT = 188
    pkg syscall (freebsd-arm64), const SYS_STAT ideal-int
    pkg syscall (freebsd-arm64), const SYS_STATFS = 396
    pkg syscall (freebsd-arm64), const SYS_STATFS ideal-int
    pkg syscall (freebsd-arm64), const SYS_SWAPCONTEXT = 423
    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 SYS_STACK_SNAPSHOT = 365
    pkg syscall (darwin-arm64), const SYS_STACK_SNAPSHOT ideal-int
    pkg syscall (darwin-arm64), const SYS_STAT = 188
    pkg syscall (darwin-arm64), const SYS_STAT ideal-int
    pkg syscall (darwin-arm64), const SYS_STAT64 = 338
    pkg syscall (darwin-arm64), const SYS_STAT64 ideal-int
    pkg syscall (darwin-arm64), const SYS_STAT64_EXTENDED = 341
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top