Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CopyN (0.12 sec)

  1. cmd/peer-rest-server.go

    		return
    	}
    
    	globalNetPerfRX.Connect()
    	defer globalNetPerfRX.Disconnect()
    
    	connectTime := time.Now()
    	ctx := newContext(r, w, "DevNull")
    	for {
    		n, err := io.CopyN(xioutil.Discard, r.Body, 128*humanize.KiByte)
    		atomic.AddUint64(&globalNetPerfRX.RX, uint64(n))
    		if err != nil && err != io.EOF {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 51.8K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    						return
    					}
    					fanOutEntries = append(fanOutEntries, m)
    				}
    				part.Close()
    				continue
    			}
    
    			// value, store as string in memory
    			n, err := io.CopyN(&b, part, maxMemoryBytes+1)
    			part.Close()
    
    			if err != nil && err != io.EOF {
    				apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    				apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
Back to top