Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Nevett (0.28 sec)

  1. misc/wasm/wasm_exec.js

    			if (this.exited) {
    				this._resolveExitPromise();
    			}
    		}
    
    		_makeFuncWrapper(id) {
    			const go = this;
    			return function () {
    				const event = { id: id, this: this, args: arguments };
    				go._pendingEvent = event;
    				go._resume();
    				return event.result;
    			};
    		}
    	}
    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.14.txt

    pkg syscall (windows-386), const CTRL_CLOSE_EVENT = 2
    pkg syscall (windows-386), const CTRL_CLOSE_EVENT ideal-int
    pkg syscall (windows-386), const CTRL_LOGOFF_EVENT = 5
    pkg syscall (windows-386), const CTRL_LOGOFF_EVENT ideal-int
    pkg syscall (windows-386), const CTRL_SHUTDOWN_EVENT = 6
    pkg syscall (windows-386), const CTRL_SHUTDOWN_EVENT ideal-int
    pkg syscall (windows-amd64), const CTRL_CLOSE_EVENT = 2
    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)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), type Kevent_t struct
    pkg syscall (darwin-arm64), type Kevent_t struct, Data int64
    pkg syscall (darwin-arm64), type Kevent_t struct, Fflags uint32
    pkg syscall (darwin-arm64), type Kevent_t struct, Filter int16
    pkg syscall (darwin-arm64), type Kevent_t struct, Flags uint16
    pkg syscall (darwin-arm64), type Kevent_t struct, Ident uint64
    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)
  4. api/go1.20.txt

    pkg syscall (freebsd-riscv64), type Kevent_t struct #53466
    pkg syscall (freebsd-riscv64), type Kevent_t struct, Data int64 #53466
    pkg syscall (freebsd-riscv64), type Kevent_t struct, Fflags uint32 #53466
    pkg syscall (freebsd-riscv64), type Kevent_t struct, Filter int16 #53466
    pkg syscall (freebsd-riscv64), type Kevent_t struct, Flags uint16 #53466
    pkg syscall (freebsd-riscv64), type Kevent_t struct, Ident uint64 #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)
  5. src/cmd/cgo/gcc.go

    	origX := *px
    	*px = ast.NewIdent(fmt.Sprintf("_cgoBase%d", i))
    	fmt.Fprintf(sb, "_cgo%d := %s; ", i, gofmtPos(arg, arg.Pos()))
    	*px = origX
    
    	// Use "0 == 0" to do the right thing in the unlikely event
    	// that "true" is shadowed.
    	fmt.Fprintf(sbCheck, "_cgoCheckPointer(_cgoBase%d, 0 == 0); ", i)
    
    	return true
    }
    
    // checkSlice checks whether arg has the form x[i:j], possibly inside
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/1-time.md

    is in a module with a `go.mod` `go` line using Go 1.23.0 or later.
    When Go 1.23 builds older programs, the old behaviors remain in effect.
    The new [GODEBUG setting](/doc/godebug) [`asynctimerchan=1`](/pkg/time/#NewTimer)
    can be used to revert back to asynchronous channel behaviors
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg syscall (linux-386), const PTRACE_DETACH = 17
    pkg syscall (linux-386), const PTRACE_EVENT_CLONE = 3
    pkg syscall (linux-386), const PTRACE_EVENT_EXEC = 4
    pkg syscall (linux-386), const PTRACE_EVENT_EXIT = 6
    pkg syscall (linux-386), const PTRACE_EVENT_FORK = 1
    pkg syscall (linux-386), const PTRACE_EVENT_VFORK = 2
    pkg syscall (linux-386), const PTRACE_EVENT_VFORK_DONE = 5
    pkg syscall (linux-386), const PTRACE_GETEVENTMSG = 16897
    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 (0)
  8. api/except.txt

    pkg syscall (openbsd-amd64), type Dirent struct, Fileno uint32
    pkg syscall (openbsd-amd64), type FdSet struct, Bits [32]int32
    pkg syscall (openbsd-amd64), type Kevent_t struct, Data int32
    pkg syscall (openbsd-amd64), type Kevent_t struct, Ident uint32
    pkg syscall (openbsd-amd64), type Mclpool struct, Grown uint32
    pkg syscall (openbsd-amd64), type RtMetrics struct, Expire uint32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 25 00:13:30 GMT 2023
    - 34.6K bytes
    - Viewed (0)
  9. misc/ios/go_ios_exec.go

    	# For remote device runs, we need to wait for eStateConnected,
    	# below.
    	run_program()
    
    while True:
    	if not listener.WaitForEvent(1, event):
    		continue
    	if not lldb.SBProcess.EventIsProcessEvent(event):
    		continue
    	if running:
    		# Pass through stdout and stderr.
    		while True:
    			out = process.GetSTDOUT(8192)
    			if not out:
    				break
    			sys.stdout.write(out)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  10. doc/go_mem.html

    <p>
    The exit of a goroutine is not guaranteed to be synchronized before
    any event in the program.
    For example, in this program:
    </p>
    
    <pre>
    var a string
    
    func hello() {
    	go func() { a = "hello" }()
    	print(a)
    }
    </pre>
    
    <p>
    the assignment to <code>a</code> is not followed by
    any synchronization event, so it is not guaranteed to be
    observed by any other goroutine.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
Back to top