Source File
fd.go
Belonging Package
internal/poll
package poll
import (
)
var ErrNetClosing = errors.New("use of closed network connection")
var ErrFileClosing = errors.New("use of closed file")
var ErrNoDeadline = errors.New("file type does not support deadline")
func ( bool) error {
if {
return ErrFileClosing
}
return ErrNetClosing
}
type DeadlineExceededError struct{}
func ( *DeadlineExceededError) () string { return "i/o timeout" }
func ( *DeadlineExceededError) () bool { return true }
func ( *DeadlineExceededError) () bool { return true }
var ErrNotPollable = errors.New("not pollable")
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |