- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for badRequest (0.1 sec)
-
src/main/webapp/WEB-INF/view/error/badRequest.jsp
<jsp:include page="../header.jsp" /> <main class="container"> <div class="text-center"> <h2> <la:message key="labels.request_error_title" /> </h2> <div class="errormessage"><la:message key="labels.bad_request" /></div> </div> </main> <jsp:include page="../footer.jsp" /> <input type="hidden" id="contextPath" value="${pageContext.request.contextPath}" /> <script type="text/javascript"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/error/badRequest.jsp
<jsp:include page="../header.jsp" /> <main class="container"> <div class="text-center"> <h2> <la:message key="labels.request_error_title" /> </h2> <div class="errormessage"><la:message key="labels.bad_request" /></div> </div> </main> <jsp:include page="../footer.jsp" /> <input type="hidden" id="contextPath" value="${pageContext.request.contextPath}" /> <script type="text/javascript"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/web.xml
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 29 02:54:01 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/resources/fess.xml
<postConstruct name="addDesignJspFileName"> <arg>"errorSystem"</arg> <arg>"error/system.jsp"</arg> </postConstruct> <postConstruct name="addDesignJspFileName"> <arg>"errorBadRequest"</arg> <arg>"error/badRequest.jsp"</arg> </postConstruct> <postConstruct name="addDesignJspFileName"> <arg>"cache"</arg> <arg>"cache.hbs"</arg> </postConstruct> <postConstruct name="addDesignJspFileName">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jul 28 09:03:48 UTC 2024 - 5.2K bytes - Viewed (0) -
cmd/handler-utils.go
Code: "XMinioAdminVersionMismatch", Description: desc, HTTPStatusCode: http.StatusUpgradeRequired, }, r.URL) default: writeErrorResponse(r.Context(), w, APIError{ Code: "BadRequest", Description: fmt.Sprintf("An error occurred when parsing the HTTP request %s at '%s'", r.Method, r.URL.Path), HTTPStatusCode: http.StatusBadRequest, }, r.URL) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:31:51 UTC 2024 - 15.5K bytes - Viewed (0) -
cmd/api-errors.go
Code: "InvalidPrefixMarker", Description: "Invalid marker prefix combination", HTTPStatusCode: http.StatusBadRequest, }, ErrBadRequest: { Code: "BadRequest", Description: "400 BadRequest", HTTPStatusCode: http.StatusBadRequest, }, ErrKeyTooLongError: { Code: "KeyTooLongError", Description: "Your key is too long", HTTPStatusCode: http.StatusBadRequest,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 92.1K bytes - Viewed (0) -
cmd/object-handlers.go
apiErr := errorCodes.ToAPIErr(s3Err) // If not set, convert or use BadRequest if s3Err == ErrNone { apiErr = toAPIError(ctx, err) if apiErr.Code == "InternalError" { // Convert generic internal errors to bad requests. apiErr = APIError{ Code: "BadRequest", Description: err.Error(), HTTPStatusCode: http.StatusBadRequest, } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 05 05:16:15 UTC 2024 - 117.4K bytes - Viewed (0) -
cmd/object-handlers_test.go
secretKey: credentials.SecretKey, expectedRespStatus: http.StatusBadRequest, }, // Test case - 7. // Test case with object name missing from source. // fail with BadRequest. { bucketName: bucketName, uploadID: uploadID, copySourceHeader: url.QueryEscape("//123"), accessKey: credentials.AccessKey, secretKey: credentials.SecretKey,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 20:10:44 UTC 2024 - 163.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
public class ApiResult { protected ApiResponse response = null; public ApiResult(final ApiResponse response) { this.response = response; } public enum Status { OK(0), BAD_REQUEST(1), SYSTEM_ERROR(2), UNAUTHORIZED(3), FAILED(9); private final int id; Status(final int id) { this.id = id; } public int getId() { return id;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.5K bytes - Viewed (0)