Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for CAmount (0.21 sec)

  1. src/cmd/cgo/doc.go

    known to the system compiler (for example, all the GNU C extensions) as
    well as the system-specific header locations and system-specific
    pre-#defined macros. This is certainly possible to do, but it is an
    enormous amount of work.
    
    Cgo takes a different approach. It determines the meaning of C
    identifiers not by parsing C code but by feeding carefully constructed
    programs into the system C compiler and interpreting the generated
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_UNLINKAT ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_UNLINK ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_UNMOUNT = 22
    pkg syscall (netbsd-arm64-cgo), const SYS_UNMOUNT ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_UTIMENSAT = 467
    pkg syscall (netbsd-arm64-cgo), const SYS_UTIMENSAT ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_UTIMES = 420
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    	for i := 0; i < len(bufsizes); i++ {
    		for j := 0; j < len(bufsizes); j++ {
    			nwrite := bufsizes[i]
    			bs := bufsizes[j]
    
    			// Write nwrite bytes using buffer size bs.
    			// Check that the right amount makes it out
    			// and that the data is correct.
    
    			w.Reset()
    			buf := NewWriterSize(w, bs)
    			context := fmt.Sprintf("nwrite=%d bufsize=%d", nwrite, bs)
    			n, e1 := buf.Write(data[0:nwrite])
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/callback.go

    	}
    }
    
    var stringFromGo string
    
    //export goWithString
    func goWithString(s string) {
    	stringFromGo = s
    }
    
    func testCallbackStack(t *testing.T) {
    	// Make cgo call and callback with different amount of stack available.
    	// We do not do any explicit checks, just ensure that it does not crash.
    	for _, f := range splitTests {
    		f()
    	}
    }
    
    //export goStackCheck
    func goStackCheck() {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 111.5K bytes
    - Viewed (0)
  5. misc/wasm/go_wasip1_wasm_exec

    		;;
    	"wasmer")
    		exec wasmer run --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
    		;;
    	"wazero")
    		exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
    		;;
    	"wasmtime" | "")
    Shell Script
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 17:09:10 GMT 2024
    - 797 bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (darwin-386), const SYS___MAC_GET_LINK ideal-int
    pkg syscall (darwin-386), const SYS___MAC_GET_MOUNT ideal-int
    pkg syscall (darwin-386), const SYS___MAC_GET_PID ideal-int
    pkg syscall (darwin-386), const SYS___MAC_GET_PROC ideal-int
    pkg syscall (darwin-386), const SYS___MAC_MOUNT ideal-int
    pkg syscall (darwin-386), const SYS___MAC_SET_FD ideal-int
    pkg syscall (darwin-386), const SYS___MAC_SET_FILE ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_UNDELETE ideal-int
    pkg syscall (darwin-arm64), const SYS_UNLINK = 10
    pkg syscall (darwin-arm64), const SYS_UNLINK ideal-int
    pkg syscall (darwin-arm64), const SYS_UNMOUNT = 159
    pkg syscall (darwin-arm64), const SYS_UNMOUNT ideal-int
    pkg syscall (darwin-arm64), const SYS_UTIMES = 138
    pkg syscall (darwin-arm64), const SYS_UTIMES ideal-int
    pkg syscall (darwin-arm64), const SYS_VFORK = 66
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  8. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_UNLINKAT = 503
    pkg syscall (freebsd-arm64), const SYS_UNLINKAT ideal-int
    pkg syscall (freebsd-arm64), const SYS_UNMOUNT = 22
    pkg syscall (freebsd-arm64), const SYS_UNMOUNT ideal-int
    pkg syscall (freebsd-arm64), const SYS_UTIMENSAT = 547
    pkg syscall (freebsd-arm64), const SYS_UTIMENSAT ideal-int
    pkg syscall (freebsd-arm64), const SYS_UTIMES = 138
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    On Windows, [EvalSymlinks] no longer evaluates mount points,
    which was a source of many inconsistencies and bugs.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 545 bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    		tok := p.next()
    		ext = tok.String()
    	}
    	if p.peek() == lex.LSH {
    		// parses left shift amount applied after extension: <<Amount
    		p.get(lex.LSH)
    		tok := p.get(scanner.Int)
    		amount, err := strconv.ParseInt(tok.String(), 10, 16)
    		if err != nil {
    			p.errorf("parsing left shift amount: %s", err)
    		}
    		num = int16(amount)
    	} else if p.peek() == '[' {
    		// parses an element: [Index]
    		p.get('[')
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
Back to top