- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for httpStatusCode (0.06 seconds)
-
src/main/java/org/codelibs/curl/CurlResponse.java
*/ public int getHttpStatusCode() { return httpStatusCode; } /** * Sets the HTTP status code for the response. * * @param httpStatusCode the HTTP status code to set. */ public void setHttpStatusCode(final int httpStatusCode) { this.httpStatusCode = httpStatusCode; } /** * Gets the encoding used for the response content.Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 6.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
* Checks if the HTTP status code indicates a redirect. * * @param httpStatusCode The HTTP status code to check * @return True if the status code indicates a redirect, false otherwise */ protected boolean isRedirectHttpStatus(final int httpStatusCode) { return redirectHttpStatusPattern.matcher(Integer.toString(httpStatusCode)).matches(); } /** * Executes the HTTP client request.Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Jan 31 12:23:29 GMT 2026 - 62.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
} @Override public void setMethod(String method) { // Do nothing in test } @Override public void setHttpStatusCode(Integer httpStatusCode) { // Do nothing in test } @Override public void setStatus(Integer status) { // Do nothing in test } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
final int httpStatusCode = response.getHttpStatusCode(); if (httpStatusCode == 200) { logger.info("ConfigSync is ready."); return; } final String message = "Configsync is not available. HTTP Status is " + httpStatusCode; if (response.getContentException() != null) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1)