Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cyan (0.13 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const DLT_CAN20B = 190
    pkg syscall (netbsd-arm64-cgo), const DLT_CAN20B ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_CAN_SOCKETCAN = 227
    pkg syscall (netbsd-arm64-cgo), const DLT_CAN_SOCKETCAN ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_CHAOS = 5
    pkg syscall (netbsd-arm64-cgo), const DLT_CHAOS ideal-int
    pkg syscall (netbsd-arm64-cgo), const DLT_C_HDLC = 104
    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. api/go1.16.txt

    pkg syscall (darwin-arm64), const LOCK_SH ideal-int
    pkg syscall (darwin-arm64), const LOCK_UN = 8
    pkg syscall (darwin-arm64), const LOCK_UN ideal-int
    pkg syscall (darwin-arm64), const MADV_CAN_REUSE = 9
    pkg syscall (darwin-arm64), const MADV_CAN_REUSE ideal-int
    pkg syscall (darwin-arm64), const MADV_DONTNEED = 4
    pkg syscall (darwin-arm64), const MADV_DONTNEED ideal-int
    pkg syscall (darwin-arm64), const MADV_FREE = 5
    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)
  3. doc/go_spec.html

    <-chan <-chan int  // same as <-chan (<-chan int)
    chan (<-chan int)
    </pre>
    
    <p>
    A new, initialized channel
    value can be made using the built-in function
    <a href="#Making_slices_maps_and_channels"><code>make</code></a>,
    which takes the channel type and an optional <i>capacity</i> as arguments:
    </p>
    
    <pre>
    make(chan int, 100)
    </pre>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top