Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Tiller (0.14 sec)

  1. src/bufio/bufio.go

    			}
    			nr++
    		}
    		if nr == maxConsecutiveEmptyReads {
    			return n, io.ErrNoProgress
    		}
    		b.n += m
    		n += int64(m)
    		if err != nil {
    			break
    		}
    	}
    	if err == io.EOF {
    		// If we filled the buffer exactly, flush preemptively.
    		if b.Available() == 0 {
    			err = b.Flush()
    		} else {
    			err = nil
    		}
    	}
    	return n, err
    }
    
    // buffered input and output
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
Back to top