Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sysStat (0.13 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)
Back to top