Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for streamHTTPResponse (0.2 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/storage-rest-server.go

    func (h *httpStreamResponse) CloseWithError(err error) {
    	if h.done == nil {
    		return
    	}
    	h.done <- err
    	h.err = err
    	// Indicates that the response is done.
    	<-h.done
    	h.done = nil
    }
    
    // streamHTTPResponse can be used to avoid timeouts with long storage
    // operations, such as bitrot verification or data usage scanning.
    // Every 10 seconds a space character is sent.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 27 15:19:03 GMT 2025
    - 45.7K bytes
    - Click Count (0)
Back to Top