Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ErrNoProgress (0.15 sec)

  1. src/io/io.go

    // middle of reading a fixed-size block or data structure.
    var ErrUnexpectedEOF = errors.New("unexpected EOF")
    
    // ErrNoProgress is returned by some clients of a [Reader] when
    // many calls to Read have failed to return any data or error,
    // usually the sign of a broken [Reader] implementation.
    var ErrNoProgress = errors.New("multiple Read calls return no data or error")
    
    // Reader is the interface that wraps the basic Read method.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top