Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SYSTEM_ERROR (0.09 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/log/LogType.java

        CRAWLING_ACCESS_EXCEPTION, //
        CRAWLING_EXCETPION, //
        NO_URL_IN_QUEUE, //
        START_THREAD, //
        FINISHED_THREAD, //
        NO_RESPONSE_PROCESSOR, //
        NO_RULE, //
        SYSTEM_ERROR
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

        }
    
        @Override
        public OptionalThing<ApiResponse> handleServerException(final ApiFailureResource resource, final Throwable cause) {
            return OptionalThing.of(asJson(createFailureBean(Status.SYSTEM_ERROR, createMessage(resource, cause))));
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

                break;
            case NO_RESPONSE_PROCESSOR:
                processNoResponseProcessor(objs);
                break;
            case NO_RULE:
                processNoRule(objs);
                break;
            case SYSTEM_ERROR:
                processSystemError(objs);
                break;
            default:
                processDefault(objs);
                break;
            }
        }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. 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)
  5. 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