Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Pipe (0.28 sec)

  1. api/go1.1.txt

    pkg syscall (darwin-386), const SYS_PID_RESUME = 434
    pkg syscall (darwin-386), const SYS_PID_SHUTDOWN_SOCKETS = 436
    pkg syscall (darwin-386), const SYS_PID_SUSPEND = 433
    pkg syscall (darwin-386), const SYS_PIPE = 42
    pkg syscall (darwin-386), const SYS_POLL = 230
    pkg syscall (darwin-386), const SYS_POLL_NOCANCEL = 417
    pkg syscall (darwin-386), const SYS_POSIX_SPAWN = 244
    pkg syscall (darwin-386), const SYS_PREAD = 153
    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)
  2. doc/go_spec.html

    </p>
    
    <pre class="grammar">
    "var" IdentifierList "=" ExpressionList .
    </pre>
    
    <pre>
    i, j := 0, 10
    f := func() int { return 7 }
    ch := make(chan int)
    r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <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)
  3. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_PDKILL = 519 #53466
    pkg syscall (freebsd-riscv64), const SYS_PDKILL ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_PIPE = 42 #53466
    pkg syscall (freebsd-riscv64), const SYS_PIPE ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_PIPE2 = 542 #53466
    pkg syscall (freebsd-riscv64), const SYS_PIPE2 ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_PIPE2 = 453
    pkg syscall (netbsd-arm64-cgo), const SYS_PIPE2 ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_PIPE = 42
    pkg syscall (netbsd-arm64-cgo), const SYS_PIPE ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_PMC_CONTROL = 342
    pkg syscall (netbsd-arm64-cgo), const SYS_PMC_CONTROL ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_PMC_GET_INFO = 341
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    </p>
    
    <pre class="grammar">
    "var" IdentifierList = ExpressionList .
    </pre>
    
    <pre>
    i, j := 0, 10
    f := func() int { return 7 }
    ch := make(chan int)
    r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <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)
  6. misc/go_android_exec/main.go

    	// passed on, the hanging adb subprocess will hold them open and
    	// go test will hang forever.
    	//
    	// Avoid that by wrapping stderr, breaking the short circuit and
    	// forcing cmd.Run to use another pipe and goroutine to pass
    	// along stderr from adb.
    	cmd.Stderr = struct{ io.Writer }{os.Stderr}
    	err := cmd.Run()
    
    	// Before we process err, flush any further output and get the exit code.
    	exitCode, err2 := filter.Finish()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg io, func LimitReader(Reader, int64) Reader
    pkg io, func MultiReader(...Reader) Reader
    pkg io, func MultiWriter(...Writer) Writer
    pkg io, func NewSectionReader(ReaderAt, int64, int64) *SectionReader
    pkg io, func Pipe() (*PipeReader, *PipeWriter)
    pkg io, func ReadAtLeast(Reader, []uint8, int) (int, error)
    pkg io, func ReadFull(Reader, []uint8) (int, error)
    pkg io, func TeeReader(Reader, Writer) Reader
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_PID_SUSPEND = 433
    pkg syscall (darwin-arm64), const SYS_PID_SUSPEND ideal-int
    pkg syscall (darwin-arm64), const SYS_PIPE = 42
    pkg syscall (darwin-arm64), const SYS_PIPE ideal-int
    pkg syscall (darwin-arm64), const SYS_POLL = 230
    pkg syscall (darwin-arm64), const SYS_POLL ideal-int
    pkg syscall (darwin-arm64), const SYS_POLL_NOCANCEL = 417
    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)
  9. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_PDGETPID ideal-int
    pkg syscall (freebsd-arm64), const SYS_PDKILL = 519
    pkg syscall (freebsd-arm64), const SYS_PDKILL ideal-int
    pkg syscall (freebsd-arm64), const SYS_PIPE = 42
    pkg syscall (freebsd-arm64), const SYS_PIPE ideal-int
    pkg syscall (freebsd-arm64), const SYS_PIPE2 = 542
    pkg syscall (freebsd-arm64), const SYS_PIPE2 ideal-int
    pkg syscall (freebsd-arm64), const SYS_POLL = 209
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const SYS_PDFORK ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_PDGETPID ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_PDKILL ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_PIPE ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_POLL ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_POSIX_FADVISE ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_POSIX_FALLOCATE ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top