Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PutRequest (0.53 sec)

  1. internal/grid/handlers.go

    func (h *StreamTypeHandler[Payload, Req, Resp]) NewRequest() Req {
    	return h.reqPool.Get().(Req)
    }
    
    // PutRequest will accept a request for reuse.
    // These should be returned by the handler.
    func (h *StreamTypeHandler[Payload, Req, Resp]) PutRequest(r Req) {
    	if r != h.nilReq {
    		h.reqPool.Put(r)
    	}
    }
    
    // PutResponse will accept a response for reuse.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 27.1K bytes
    - Viewed (0)
  2. cmd/server_test.go

    		buffer := bytes.NewReader([]byte("testcontent"))
    		putRequest, err := newTestSignedRequest(http.MethodPut, getPutObjectURL(s.endPoint, bucketName, objectName),
    			int64(buffer.Len()), buffer, s.accessKey, s.secretKey, s.signer)
    		c.Assert(err, nil)
    		response, err = s.client.Do(putRequest)
    		c.Assert(err, nil)
    		c.Assert(response.StatusCode, http.StatusOK)
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
Back to top