Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SELECT (0.26 sec)

  1. doc/go_spec.html

    	    statement</a>.</li>
    	</ul>
    </li>
    
    <li>
    	A <a href="#Select_statements">"select" statement</a> in which:
    	<ul>
    	<li>there are no "break" statements referring to the "select" statement, and</li>
    	<li>the statement lists in each case, including the default if present,
    	    end in a terminating statement.</li>
    	</ul>
    </li>
    
    <li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    // Passing a nil function returns the default ABI based on experiment configuration.
    func abiForFunc(fn *ir.Func, abi0, abi1 *abi.ABIConfig) *abi.ABIConfig {
    	if buildcfg.Experiment.RegabiArgs {
    		// Select the ABI based on the function's defining ABI.
    		if fn == nil {
    			return abi1
    		}
    		switch fn.ABI {
    		case obj.ABI0:
    			return abi0
    		case obj.ABIInternal:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), func RouteRIB(int, int) ([]uint8, error)
    pkg syscall (netbsd-arm64-cgo), func Seek(int, int64, int) (int64, error)
    pkg syscall (netbsd-arm64-cgo), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
    pkg syscall (netbsd-arm64-cgo), func Sendfile(int, int, *int64, int) (int, error)
    pkg syscall (netbsd-arm64-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), func RouteRIB //deprecated
    pkg syscall (darwin-arm64), func RouteRIB(int, int) ([]uint8, error)
    pkg syscall (darwin-arm64), func Seek(int, int64, int) (int64, error)
    pkg syscall (darwin-arm64), func Select(int, *FdSet, *FdSet, *FdSet, *Timeval) error
    pkg syscall (darwin-arm64), func Sendfile(int, int, *int64, int) (int, error)
    pkg syscall (darwin-arm64), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top