Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HTTPStatusCode (0.26 sec)

  1. src/main/java/org/codelibs/curl/CurlResponse.java

            this.contentCache = contentCache;
        }
    
        public int getHttpStatusCode() {
            return httpStatusCode;
        }
    
        public void setHttpStatusCode(final int httpStatusCode) {
            this.httpStatusCode = httpStatusCode;
        }
    
        public String getEncoding() {
            return encoding;
        }
    
        public void setEncoding(final String encoding) {
    Java
    - Registered: Thu May 09 15:34:10 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                        }
                    }
    
                    final int httpStatusCode = responseData.getHttpStatusCode();
                    if (logger.isDebugEnabled()) {
                        logger.debug("Accessing document: {}, status: {}", url, httpStatusCode);
                    }
                    if (httpStatusCode == 404) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top