Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for getKind (0.38 sec)

  1. misc/wasm/wasm_exec.js

    			unlink(path, callback) { callback(enosys()); },
    			utimes(path, atime, mtime, callback) { callback(enosys()); },
    		};
    	}
    
    	if (!globalThis.process) {
    		globalThis.process = {
    			getuid() { return -1; },
    			getgid() { return -1; },
    			geteuid() { return -1; },
    			getegid() { return -1; },
    			getgroups() { throw enosys(); },
    			pid: -1,
    			ppid: -1,
    			umask() { throw enosys(); },
    			cwd() { throw enosys(); },
    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), const SYS_GETFH = 395
    pkg syscall (netbsd-arm64-cgo), const SYS_GETFH ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_GETGID = 47
    pkg syscall (netbsd-arm64-cgo), const SYS_GETGID ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_GETGROUPS = 79
    pkg syscall (netbsd-arm64-cgo), const SYS_GETGROUPS ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_GETITIMER = 426
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue1435.go

    // }
    import "C"
    
    // compareStatus is used to confirm the contents of the thread
    // specific status files match expectations.
    func compareStatus(filter, expect string) error {
    	expected := filter + expect
    	pid := syscall.Getpid()
    	fs, err := os.ReadDir(fmt.Sprintf("/proc/%d/task", pid))
    	if err != nil {
    		return fmt.Errorf("unable to find %d tasks: %v", pid, err)
    	}
    	expectedProc := fmt.Sprintf("Pid:\t%d", pid)
    	foundAThread := false
    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)
  4. api/go1.txt

    pkg os, func Getegid() int
    pkg os, func Getenv(string) string
    pkg os, func Geteuid() int
    pkg os, func Getgid() int
    pkg os, func Getgroups() ([]int, error)
    pkg os, func Getpagesize() int
    pkg os, func Getpid() int
    pkg os, func Getppid() int
    pkg os, func Getuid() int
    pkg os, func Getwd() (string, error)
    pkg os, func Hostname() (string, error)
    pkg os, func IsExist(error) bool
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64-cgo), const SYS_GETTID = 286
    pkg syscall (darwin-arm64-cgo), const SYS_GETTID ideal-int
    pkg syscall (darwin-arm64-cgo), const SYS_GETTIMEOFDAY = 116
    pkg syscall (darwin-arm64-cgo), const SYS_GETTIMEOFDAY ideal-int
    pkg syscall (darwin-arm64-cgo), const SYS_GETUID = 24
    pkg syscall (darwin-arm64-cgo), const SYS_GETUID ideal-int
    pkg syscall (darwin-arm64-cgo), const SYS_GETWGROUPS = 290
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_GETFSSTAT = 395
    pkg syscall (freebsd-arm64), const SYS_GETFSSTAT ideal-int
    pkg syscall (freebsd-arm64), const SYS_GETGID = 47
    pkg syscall (freebsd-arm64), const SYS_GETGID ideal-int
    pkg syscall (freebsd-arm64), const SYS_GETGROUPS = 79
    pkg syscall (freebsd-arm64), const SYS_GETGROUPS ideal-int
    pkg syscall (freebsd-arm64), const SYS_GETITIMER = 86
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_GETFSSTAT = 557 #53466
    pkg syscall (freebsd-riscv64), const SYS_GETFSSTAT ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_GETGID = 47 #53466
    pkg syscall (freebsd-riscv64), const SYS_GETGID ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_GETGROUPS = 79 #53466
    pkg syscall (freebsd-riscv64), const SYS_GETGROUPS ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  8. src/bytes/bytes.go

    		c0 := sep[0]
    		c1 := sep[1]
    		i := 0
    		t := len(s) - n + 1
    		fails := 0
    		for i < t {
    			if s[i] != c0 {
    				// IndexByte is faster than bytealg.Index, so use it as long as
    				// we're not getting lots of false positives.
    				o := IndexByte(s[i+1:t], c0)
    				if o < 0 {
    					return -1
    				}
    				i += o + 1
    			}
    			if s[i+1] == c1 && Equal(s[i:i+n], sep) {
    				return i
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall (linux-386), const SYS_GETRLIMIT = 76
    pkg syscall (linux-386), const SYS_GETRUSAGE = 77
    pkg syscall (linux-386), const SYS_GETSID = 147
    pkg syscall (linux-386), const SYS_GETTID = 224
    pkg syscall (linux-386), const SYS_GETTIMEOFDAY = 78
    pkg syscall (linux-386), const SYS_GETUID = 24
    pkg syscall (linux-386), const SYS_GETUID32 = 199
    pkg syscall (linux-386), const SYS_GETXATTR = 229
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (1)
  10. misc/go_android_exec/exitcode_test.go

    		if err == nil || !wantErr.MatchString(err.Error()) {
    			t.Errorf("want error matching %s, got %s", wantErr, err)
    		}
    		// And it should flush all output (even if it looks
    		// like we may be getting an exit code)
    		if got := out.String(); text != got {
    			t.Errorf("want full output %q, got %q", text, got)
    		}
    	}
    	wantErr = regexp.MustCompile("^no exit code")
    	check("abc")
    	check("exitcode")
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed May 03 14:54:58 GMT 2023
    - 2.1K bytes
    - Viewed (0)
Back to top