Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for mijn (0.16 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERMIN = 46
    pkg syscall (netbsd-arm64-cgo), const ETHERMIN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHER_MIN_LEN = 64
    pkg syscall (netbsd-arm64-cgo), const ETHER_MIN_LEN ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERMTU = 1500
    pkg syscall (netbsd-arm64-cgo), const ETHERMTU ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERMTU_JUMBO = 9000
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    }
    </pre>
    
    <p>
    A function declaration may omit the body. Such a declaration provides the
    signature for a function implemented outside Go, such as an assembly routine.
    </p>
    
    <pre>
    func min(x int, y int) int {
    	if x &lt; y {
    		return x
    	}
    	return y
    }
    
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. misc/wasm/wasm_exec.html

    <head>
    	<meta charset="utf-8">
    	<title>Go wasm</title>
    </head>
    
    <body>
    	<!--
    	Add the following polyfill for Microsoft Edge 17/18 support:
    	<script src="https://cdn.jsdelivr.net/npm/text-encoding@0.7.0/lib/encoding.min.js"></script>
    	(see https://caniuse.com/#feat=textencoder)
    	-->
    	<script src="wasm_exec.js"></script>
    	<script>
    		if (!WebAssembly.instantiateStreaming) { // polyfill
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Oct 02 17:25:11 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_MATCHING_MAX = 246
    pkg syscall (freebsd-arm64), const DLT_MATCHING_MAX ideal-int
    pkg syscall (freebsd-arm64), const DLT_MATCHING_MIN = 104
    pkg syscall (freebsd-arm64), const DLT_MATCHING_MIN ideal-int
    pkg syscall (freebsd-arm64), const DLT_MFR = 182
    pkg syscall (freebsd-arm64), const DLT_MFR ideal-int
    pkg syscall (freebsd-arm64), const DLT_MOST = 211
    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)
  5. api/go1.txt

    pkg image, type RGBA64 struct, Rect Rectangle
    pkg image, type RGBA64 struct, Stride int
    pkg image, type Rectangle struct
    pkg image, type Rectangle struct, Max Point
    pkg image, type Rectangle struct, Min Point
    pkg image, type Uniform struct
    pkg image, type Uniform struct, C color.Color
    pkg image, type YCbCr struct
    pkg image, type YCbCr struct, CStride int
    pkg image, type YCbCr struct, Cb []uint8
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const IPV6_MAX_SOCK_SRC_FILTER = 128
    pkg syscall (darwin-arm64), const IPV6_MAX_SOCK_SRC_FILTER ideal-int
    pkg syscall (darwin-arm64), const IPV6_MIN_MEMBERSHIPS = 31
    pkg syscall (darwin-arm64), const IPV6_MIN_MEMBERSHIPS ideal-int
    pkg syscall (darwin-arm64), const IPV6_MMTU = 1280
    pkg syscall (darwin-arm64), const IPV6_MMTU ideal-int
    pkg syscall (darwin-arm64), const IPV6_MULTICAST_HOPS = 10
    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)
  7. src/cmd/asm/internal/asm/expr_test.go

    	// Unary
    	{"-0", 0, true},
    	{"~0", -1, true},
    	{"~0*0", 0, true},
    	{"+3", 3, true},
    	{"-3", -3, true},
    	{"-9223372036854775808", -9223372036854775808, true}, // min int64
    	// Binary
    	{"3+4", 3 + 4, true},
    	{"3-4", 3 - 4, true},
    	{"2|5", 2 | 5, true},
    	{"3^4", 3 ^ 4, true},
    	{"3*4", 3 * 4, true},
    	{"14/4", 14 / 4, true},
    	{"3<<4", 3 << 4, true},
    	{"48>>3", 48 >> 3, true},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/bufio/scan.go

    			if len(s.buf) >= s.maxTokenSize || len(s.buf) > maxInt/2 {
    				s.setErr(ErrTooLong)
    				return false
    			}
    			newSize := len(s.buf) * 2
    			if newSize == 0 {
    				newSize = startBufSize
    			}
    			newSize = min(newSize, s.maxTokenSize)
    			newBuf := make([]byte, newSize)
    			copy(newBuf, s.buf[s.start:s.end])
    			s.buf = newBuf
    			s.end -= s.start
    			s.start = 0
    		}
    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)
  9. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const DLT_MATCHING_MAX = 246 #53466
    pkg syscall (freebsd-riscv64), const DLT_MATCHING_MAX ideal-int #53466
    pkg syscall (freebsd-riscv64), const DLT_MATCHING_MIN = 104 #53466
    pkg syscall (freebsd-riscv64), const DLT_MATCHING_MIN ideal-int #53466
    pkg syscall (freebsd-riscv64), const DLT_MFR = 182 #53466
    pkg syscall (freebsd-riscv64), const DLT_MFR ideal-int #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)
  10. src/builtin/builtin.go

    // max will return NaN.
    func max[T cmp.Ordered](x T, y ...T) T
    
    // The min built-in function returns the smallest value of a fixed number of
    // arguments of [cmp.Ordered] types. There must be at least one argument.
    // If T is a floating-point type and any of the arguments are NaNs,
    // min will return NaN.
    func min[T cmp.Ordered](x T, y ...T) T
    
    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)
Back to top