Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for qhold (0.2 sec)

  1. src/cmd/cgo/doc.go

    function returns void). For example:
    
    	n, err = C.sqrt(-1)
    	_, err := C.voidFunc()
    	var n, err = C.sqrt(1)
    
    Calling C function pointers is currently not supported, however you can
    declare Go variables which hold C function pointers and pass them
    back and forth between Go and C. C code may call function pointers
    received from Go. For example:
    
    	package main
    
    	// typedef int (*intFunc) ();
    	//
    	// int
    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. doc/go1.17_spec.html

    m := make(map[string]int, 100)  // map with initial space for approximately 100 elements
    </pre>
    
    <p>
    Calling <code>make</code> with a map type and size hint <code>n</code> will
    create a map with initial space to hold <code>n</code> map elements.
    The precise behavior is implementation-dependent.
    </p>
    
    
    <h3 id="Appending_and_copying_slices">Appending to and copying slices</h3>
    
    <p>
    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)
  3. src/builtin/builtin.go

    type int int
    
    // uint is an unsigned integer type that is at least 32 bits in size. It is a
    // distinct type, however, and not an alias for, say, uint32.
    type uint uint
    
    // uintptr is an integer type that is large enough to hold the bit pattern of
    // any pointer.
    type uintptr uintptr
    
    // byte is an alias for uint8 and is equivalent to uint8 in all ways. It is
    // used, by convention, to distinguish byte values from 8-bit unsigned
    // integer values.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  4. doc/go_spec.html

    m := make(map[string]int, 100)  // map with initial space for approximately 100 elements
    </pre>
    
    <p>
    Calling <code>make</code> with a map type and size hint <code>n</code> will
    create a map with initial space to hold <code>n</code> map elements.
    The precise behavior is implementation-dependent.
    </p>
    
    
    <h3 id="Min_and_max">Min and max</h3>
    
    <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)
  5. api/go1.1.txt

    pkg syscall (darwin-386), const MSG_EOF = 256
    pkg syscall (darwin-386), const MSG_EOR = 8
    pkg syscall (darwin-386), const MSG_FLUSH = 1024
    pkg syscall (darwin-386), const MSG_HAVEMORE = 8192
    pkg syscall (darwin-386), const MSG_HOLD = 2048
    pkg syscall (darwin-386), const MSG_NEEDSA = 65536
    pkg syscall (darwin-386), const MSG_OOB = 1
    pkg syscall (darwin-386), const MSG_PEEK = 2
    pkg syscall (darwin-386), const MSG_RCVMORE = 16384
    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)
  6. src/bytes/buffer.go

    	}
    	return copy(b.buf[m:], s), nil
    }
    
    // MinRead is the minimum slice size passed to a Read call by
    // [Buffer.ReadFrom]. As long as the [Buffer] has at least MinRead bytes beyond
    // what is required to hold the contents of r, ReadFrom will not grow the
    // underlying buffer.
    const MinRead = 512
    
    // ReadFrom reads data from r until EOF and appends it to the buffer, growing
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 17:10:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  7. doc/godebug.md

    using newer toolchains to compile old code.
    
    A GODEBUG setting is a `key=value` pair
    that controls the execution of certain parts of a Go program.
    The environment variable `GODEBUG`
    can hold a comma-separated list of these settings.
    For example, if a Go program is running in an environment that contains
    
    	GODEBUG=http2client=0,http2server=0
    
    then that Go program will disable the use of HTTP/2 by default in both
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  8. doc/asm.html

    (The prototype will also let <code>go</code> <code>vet</code> check the argument references.)
    At the start of the function, the arguments are assumed
    to be initialized but the results are assumed uninitialized.
    If the results will hold live pointers during a call instruction,
    the function should start by zeroing the results and then
    executing the pseudo-instruction <code>GO_RESULTS_INITIALIZED</code>.
    This instruction records that the results are now initialized
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  9. src/bufio/scan.go

    // the [Scanner] returns it to the user. If the token is nil, the
    // Scanner reads more data and continues scanning; if there is no more
    // data--if atEOF was true--the [Scanner] returns. If the data does not
    // yet hold a complete token, for instance if it has no newline while
    // scanning lines, a [SplitFunc] can return (0, nil, nil) to signal the
    // [Scanner] to read more data into the slice and try again with a
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  10. api/go1.16.txt

    pkg syscall (darwin-arm64), const MSG_FLUSH ideal-int
    pkg syscall (darwin-arm64), const MSG_HAVEMORE = 8192
    pkg syscall (darwin-arm64), const MSG_HAVEMORE ideal-int
    pkg syscall (darwin-arm64), const MSG_HOLD = 2048
    pkg syscall (darwin-arm64), const MSG_HOLD ideal-int
    pkg syscall (darwin-arm64), const MSG_NEEDSA = 65536
    pkg syscall (darwin-arm64), const MSG_NEEDSA ideal-int
    pkg syscall (darwin-arm64), const MSG_OOB = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
Back to top