Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for systemError (0.15 sec)

  1. src/main/webapp/WEB-INF/web.xml

        <error-code>408</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location>
      </error-page>
      <error-page>
        <error-code>500</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=systemError</location>
      </error-page>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 29 02:54:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        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)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

                        crawlerContext.intervalController.delay(IntervalController.WAIT_NEW_URL);
                    }
                }
            } catch (final Throwable t) {
                log(logHelper, LogType.SYSTEM_ERROR, t);
            } finally {
                // remove crawlerContext from thread
                CrawlingParameterUtil.setCrawlerContext(null);
                CrawlingParameterUtil.setUrlQueueService(null);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top