Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for uid (0.18 sec)

  1. misc/wasm/wasm_exec.js

    				const n = this.writeSync(fd, buf);
    				callback(null, n);
    			},
    			chmod(path, mode, callback) { callback(enosys()); },
    			chown(path, uid, gid, callback) { callback(enosys()); },
    			close(fd, callback) { callback(enosys()); },
    			fchmod(fd, mode, callback) { callback(enosys()); },
    			fchown(fd, uid, gid, callback) { callback(enosys()); },
    			fstat(fd, callback) { callback(enosys()); },
    			fsync(fd, callback) { callback(null); },
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type Credential struct, Groups []uint32
    pkg syscall (netbsd-arm64-cgo), type Credential struct, NoSetGroups bool
    pkg syscall (netbsd-arm64-cgo), type Credential struct, Uid uint32
    pkg syscall (netbsd-arm64-cgo), type Dirent struct
    pkg syscall (netbsd-arm64-cgo), type Dirent struct, Fileno uint64
    pkg syscall (netbsd-arm64-cgo), type Dirent struct, Name [512]int8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. src/archive/tar/stat_unix.go

    	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
    
    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)
  4. src/cmd/cgo/internal/test/issue1435.go

    		{call: "Setreuid(1,0)", fn: func() error { return syscall.Setreuid(1, 0) }, filter: "Uid:", expect: "\t1\t0\t0\t0"},
    		{call: "Setreuid(0,2)", fn: func() error { return syscall.Setreuid(0, 2) }, filter: "Uid:", expect: "\t0\t2\t2\t2"},
    		{call: "Setreuid(0,0)", fn: func() error { return syscall.Setreuid(0, 0) }, filter: "Uid:", expect: "\t0\t0\t0\t0"},
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/archive/tar/reader_test.go

    		want *Header
    		ok   bool
    	}{{
    		in: map[string]string{
    			"path":  "a/b/c",
    			"uid":   "1000",
    			"mtime": "1350244992.023960108",
    		},
    		want: &Header{
    			Name:    "a/b/c",
    			Uid:     1000,
    			ModTime: time.Unix(1350244992, 23960108),
    			PAXRecords: map[string]string{
    				"path":  "a/b/c",
    				"uid":   "1000",
    				"mtime": "1350244992.023960108",
    			},
    		},
    		ok: true,
    	}, {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  6. src/archive/tar/writer.go

    		modTime = time.Unix(0, 0)
    	}
    
    	v7 := tw.blk.toV7()
    	v7.typeFlag()[0] = hdr.Typeflag
    	fmtStr(v7.name(), hdr.Name)
    	fmtStr(v7.linkName(), hdr.Linkname)
    	fmtNum(v7.mode(), hdr.Mode)
    	fmtNum(v7.uid(), int64(hdr.Uid))
    	fmtNum(v7.gid(), int64(hdr.Gid))
    	fmtNum(v7.size(), hdr.Size)
    	fmtNum(v7.modTime(), modTime.Unix())
    
    	ustar := tw.blk.toUSTAR()
    	fmtStr(ustar.userName(), hdr.Uname)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  7. src/archive/tar/common.go

    	verifyString(h.Uname, len(ustar.userName()), "Uname", paxUname)
    	verifyString(h.Gname, len(ustar.groupName()), "Gname", paxGname)
    	verifyNumeric(h.Mode, len(v7.mode()), "Mode", paxNone)
    	verifyNumeric(int64(h.Uid), len(v7.uid()), "Uid", paxUid)
    	verifyNumeric(int64(h.Gid), len(v7.gid()), "Gid", paxGid)
    	verifyNumeric(h.Size, len(v7.size()), "Size", paxSize)
    	verifyNumeric(h.Devmajor, len(ustar.devMajor()), "Devmajor", paxNone)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  8. src/archive/tar/format.go

    //	Name              |   256B | unlimited | unlimited
    //	Linkname          |   100B | unlimited | unlimited
    //	Size              | uint33 | unlimited |    uint89
    //	Mode              | uint21 |    uint21 |    uint57
    //	Uid/Gid           | uint21 | unlimited |    uint57
    //	Uname/Gname       |    32B | unlimited |       32B
    //	ModTime           | uint33 | unlimited |     int89
    //	AccessTime        |    n/a | unlimited |     int89
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  9. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type Credential struct, Gid uint32
    pkg syscall (freebsd-386-cgo), type Credential struct, Groups []uint32
    pkg syscall (freebsd-386-cgo), type Credential struct, Uid uint32
    pkg syscall (freebsd-386-cgo), type Dirent struct
    pkg syscall (freebsd-386-cgo), type Dirent struct, Fileno uint32
    pkg syscall (freebsd-386-cgo), type Dirent struct, Name [256]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)
  10. api/go1.1.txt

    pkg go/doc, type Note struct
    pkg go/doc, type Note struct, Body string
    pkg go/doc, type Note struct, End token.Pos
    pkg go/doc, type Note struct, Pos token.Pos
    pkg go/doc, type Note struct, UID string
    pkg go/doc, type Package struct, Notes map[string][]*Note
    pkg go/doc, var IllegalPrefixes []string
    pkg go/format, func Node(io.Writer, *token.FileSet, interface{}) error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top