Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for HTTPStatusCode (0.05 seconds)

  1. cmd/object-handlers.go

    				BucketName: bucket,
    				Key:        object,
    				Resource:   r.URL.Path,
    				RequestID:  w.Header().Get(xhttp.AmzRequestID),
    				HostID:     globalDeploymentID(),
    			})
    			writeResponse(w, serr.HTTPStatusCode(), encodedErrorResponse, mimeXML)
    		} else {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		}
    		return
    	}
    	defer s3Select.Close()
    
    	if err = s3Select.Open(objectRSC); err != nil {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 120.6K bytes
    - Click Count (0)
  2. cmd/object-handlers_test.go

    					}
    					// Validate the HTTP response status code  with the expected one.
    					if want.HTTPStatusCode != rec.Code {
    						t.Errorf("%s, Expected the HTTP response status code to be %d, got %d.", reqType, want.HTTPStatusCode, rec.Code)
    					}
    				} else if want.HTTPStatusCode != http.StatusOK {
    					t.Errorf("got 200 ok, want %d", rec.Code)
    				}
    			}
    		})
    	}
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 163.1K bytes
    - Click Count (0)
  3. cmd/admin-handlers.go

    							HostID:    globalDeploymentID(),
    						})
    					}
    					if !started {
    						setCommonHeaders(w)
    						w.Header().Set(xhttp.ContentType, string(mimeJSON))
    						w.WriteHeader(hr.apiErr.HTTPStatusCode)
    					}
    					if _, err := w.Write(errorRespJSON); err != nil {
    						return
    					}
    					xhttp.Flush(w)
    				}
    				break forLoop
    			}
    		}
    	}
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 99.7K bytes
    - Click Count (0)
Back to Top