Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Grocevs (0.3 sec)

  1. src/cmd/cgo/doc.go

    fail for reasons that are irrelevant when using external linking mode.
    
    The final program will be a dynamic executable, so that cmd/link can avoid
    needing to process arbitrary .o files. It only needs to process the .o
    files generated from C files that cgo writes, and those are much more
    limited in the ELF or other features that they use.
    
    In essence, the _cgo_import.o file includes the extra linking
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue18146.go

    		if err := syscall.Exec(os.Args[0], argv, os.Environ()); err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	var cmds []*exec.Cmd
    	defer func() {
    		for _, cmd := range cmds {
    			cmd.Process.Kill()
    		}
    	}()
    
    	args := append(append([]string(nil), os.Args[1:]...), "-test.run=^Test18146$")
    	for n := attempts; n > 0; n-- {
    		cmd := exec.Command(os.Args[0], args...)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Sep 05 23:35:32 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  3. misc/wasm/wasm_exec.js

    			truncate(path, length, callback) { callback(enosys()); },
    			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,
    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)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const PRIO_PGRP = 1
    pkg syscall (netbsd-arm64-cgo), const PRIO_PGRP ideal-int
    pkg syscall (netbsd-arm64-cgo), const PRIO_PROCESS = 0
    pkg syscall (netbsd-arm64-cgo), const PRIO_PROCESS ideal-int
    pkg syscall (netbsd-arm64-cgo), const PRIO_USER = 2
    pkg syscall (netbsd-arm64-cgo), const PRIO_USER ideal-int
    pkg syscall (netbsd-arm64-cgo), const PROT_EXEC = 4
    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)
  5. doc/go1.17_spec.html

    variable that is earliest in declaration order and ready for initialization,
    until there are no variables ready for initialization.
    </p>
    
    <p>
    If any variables are still uninitialized when this
    process ends, those variables are part of one or more initialization cycles,
    and the program is not valid.
    </p>
    
    <p>
    Multiple variables on the left-hand side of a variable declaration initialized
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    	}
    	word, cond = p.lex.Text(), ""
    	operands = scratch[:0]
    	// Zero or more comma-separated operands, one per loop.
    	nesting := 0
    	colon := -1
    	for tok != '\n' && tok != ';' {
    		// Process one operand.
    		var items []lex.Token
    		if cap(operands) > len(operands) {
    			// Reuse scratch items slice.
    			items = operands[:cap(operands)][len(operands)][:0]
    		} else {
    			items = make([]lex.Token, 0, 3)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  7. doc/go_spec.html

    </pre>
    
    <p>
    A type argument <code>A<sub>k</sub></code> may be a composite type,
    containing other bound type parameters <code>P<sub>k</sub></code> as element types
    (or even be just another bound type parameter).
    In a process of repeated simplification, the bound type parameters in each type
    argument are substituted with the respective type arguments for those type
    parameters until each type argument is free of bound type parameters.
    </p>
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg syscall (linux-arm), const SYS_PREAD64 = 180
    pkg syscall (linux-arm), const SYS_PREADV = 361
    pkg syscall (linux-arm), const SYS_PRLIMIT64 = 369
    pkg syscall (linux-arm), const SYS_PROCESS_VM_READV = 376
    pkg syscall (linux-arm), const SYS_PROCESS_VM_WRITEV = 377
    pkg syscall (linux-arm), const SYS_PSELECT6 = 335
    pkg syscall (linux-arm), const SYS_PTRACE = 26
    pkg syscall (linux-arm), const SYS_PWRITE64 = 181
    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)
  9. misc/wasm/wasm_exec_node.js

    globalThis.crypto ??= require("crypto");
    
    require("./wasm_exec");
    
    const go = new Go();
    go.argv = process.argv.slice(2);
    go.env = Object.assign({ TMPDIR: require("os").tmpdir() }, process.env);
    go.exit = process.exit;
    WebAssembly.instantiate(fs.readFileSync(process.argv[2]), go.importObject).then((result) => {
    	process.on("exit", (code) => { // Node.js exits if no event handler is pending
    		if (code === 0 && !go.exited) {
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jan 30 18:49:42 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (darwin-386), const ImplementsGetwd = true
    pkg syscall (darwin-386), const PRIO_PGRP = 1
    pkg syscall (darwin-386), const PRIO_PGRP ideal-int
    pkg syscall (darwin-386), const PRIO_PROCESS = 0
    pkg syscall (darwin-386), const PRIO_PROCESS ideal-int
    pkg syscall (darwin-386), const PRIO_USER = 2
    pkg syscall (darwin-386), const PRIO_USER ideal-int
    pkg syscall (darwin-386), const SizeofICMPv6Filter = 32
    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)
Back to top