Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for guid (0.15 sec)

  1. src/archive/tar/stat_unix.go

    }
    
    // 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
    
    func statUnix(fi fs.FileInfo, h *Header, doNameLookups bool) error {
    	sys, ok := fi.Sys().(*syscall.Stat_t)
    	if !ok {
    		return nil
    	}
    	h.Uid = int(sys.Uid)
    	h.Gid = int(sys.Gid)
    	if doNameLookups {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64error.s

    	MSR	R6, ERXFR_EL1                                    // ERROR "system register is not writable"
    	MSR	R6, ERXPFGF_EL1                                  // ERROR "system register is not writable"
    	MSR	R6, GMID_EL1                                     // ERROR "system register is not writable"
    	MSR	R6, ICC_HPPIR0_EL1                               // ERROR "system register is not writable"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 37.8K bytes
    - Viewed (0)
Back to top