Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for siendo (0.23 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_SENDMSG = 28
    pkg syscall (netbsd-arm64-cgo), const SYS_SENDMSG ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_SENDTO = 133
    pkg syscall (netbsd-arm64-cgo), const SYS_SENDTO ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_SETCONTEXT = 308
    pkg syscall (netbsd-arm64-cgo), const SYS_SETCONTEXT ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_SETEGID = 182
    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

    begins. Communication blocks until the send can proceed.
    A send on an unbuffered channel can proceed if a receiver is ready.
    A send on a buffered channel can proceed if there is room in the buffer.
    A send on a closed channel proceeds by causing a <a href="#Run_time_panics">run-time panic</a>.
    A send on a <code>nil</code> channel blocks forever.
    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    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. src/bytes/buffer.go

    	}
    	c := cap(b.buf)
    	if n <= c/2-m {
    		// We can slide things down instead of allocating a new
    		// slice. We only need m+n <= c to slide, but
    		// we instead let capacity get twice as large so we
    		// don't spend all our time copying.
    		copy(b.buf, b.buf[b.off:])
    	} else if c > maxInt-c-n {
    		panic(ErrTooLarge)
    	} else {
    		// Add b.off to account for b.buf[:b.off] being sliced off the front.
    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)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_SENDMSG_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_SENDTO = 133
    pkg syscall (darwin-arm64), const SYS_SENDTO ideal-int
    pkg syscall (darwin-arm64), const SYS_SENDTO_NOCANCEL = 413
    pkg syscall (darwin-arm64), const SYS_SENDTO_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_SETATTRLIST = 221
    pkg syscall (darwin-arm64), const SYS_SETATTRLIST ideal-int
    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)
  5. api/go1.txt

    pkg syscall (darwin-386), const SYS_SENDMSG ideal-int
    pkg syscall (darwin-386), const SYS_SENDMSG_NOCANCEL ideal-int
    pkg syscall (darwin-386), const SYS_SENDTO ideal-int
    pkg syscall (darwin-386), const SYS_SENDTO_NOCANCEL ideal-int
    pkg syscall (darwin-386), const SYS_SETATTRLIST ideal-int
    pkg syscall (darwin-386), const SYS_SETAUDIT ideal-int
    pkg syscall (darwin-386), const SYS_SETAUDIT_ADDR ideal-int
    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 (2)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_SENDMSG = 28
    pkg syscall (freebsd-arm64), const SYS_SENDMSG ideal-int
    pkg syscall (freebsd-arm64), const SYS_SENDTO = 133
    pkg syscall (freebsd-arm64), const SYS_SENDTO ideal-int
    pkg syscall (freebsd-arm64), const SYS_SETAUDIT = 450
    pkg syscall (freebsd-arm64), const SYS_SETAUDIT ideal-int
    pkg syscall (freebsd-arm64), const SYS_SETAUDIT_ADDR = 452
    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)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_SENDMSG = 28 #53466
    pkg syscall (freebsd-riscv64), const SYS_SENDMSG ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_SENDTO = 133 #53466
    pkg syscall (freebsd-riscv64), const SYS_SENDTO ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_SETAUDIT = 450 #53466
    pkg syscall (freebsd-riscv64), const SYS_SETAUDIT 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)
  8. api/go1.1.txt

    pkg syscall (darwin-386), const SYS_SENDFILE = 337
    pkg syscall (darwin-386), const SYS_SENDMSG = 28
    pkg syscall (darwin-386), const SYS_SENDMSG_NOCANCEL = 402
    pkg syscall (darwin-386), const SYS_SENDTO = 133
    pkg syscall (darwin-386), const SYS_SENDTO_NOCANCEL = 413
    pkg syscall (darwin-386), const SYS_SETATTRLIST = 221
    pkg syscall (darwin-386), const SYS_SETAUDIT = 356
    pkg syscall (darwin-386), const SYS_SETAUDIT_ADDR = 358
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  9. doc/go_spec.html

    begins. Communication blocks until the send can proceed.
    A send on an unbuffered channel can proceed if a receiver is ready.
    A send on a buffered channel can proceed if there is room in the buffer.
    A send on a closed channel proceeds by causing a <a href="#Run_time_panics">run-time panic</a>.
    A send on a <code>nil</code> channel blocks forever.
    </p>
    
    <pre>
    ch &lt;- 3  // send value 3 to channel ch
    </pre>
    
    
    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)
  10. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const SYS_SEND ideal-int
    pkg syscall (linux-arm-cgo), const SYS_SENDFILE ideal-int
    pkg syscall (linux-arm-cgo), const SYS_SENDFILE64 ideal-int
    pkg syscall (linux-arm-cgo), const SYS_SENDMMSG ideal-int
    pkg syscall (linux-arm-cgo), const SYS_SENDMSG ideal-int
    pkg syscall (linux-arm-cgo), const SYS_SENDTO ideal-int
    pkg syscall (linux-arm-cgo), const SYS_SETDOMAINNAME ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top