Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for FAILURE (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "failure_url";
        protected final String _tableDispName = "failure_url";
        protected final String _tablePropertyName = "FailureUrl";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFailureUrlCB.java

        @Override
        public FailureUrlDbm asDBMeta() {
            return FailureUrlDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "failure_url";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

                    if (logger.isDebugEnabled()) {
                        logger.debug("container was destroyed.");
                    }
                    return;
                }
                logger.warn("Failed to store a failure url.", e);
            }
    
            super.processCrawlingAccessException(objs);
            if (objs.length > 1 && objs[1] instanceof final UrlQueue<?> urlQueue) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_storage_file_upload_failure = "{errors.storage_file_upload_failure}";
    
        /** The key of the message: The target file is not found in Storage. */
        public static final String ERRORS_storage_file_not_found = "{errors.storage_file_not_found}";
    
        /** The key of the message: Failed to download {0}. */
        public static final String ERRORS_storage_file_download_failure = "{errors.storage_file_download_failure}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            log(valueMap);
        }
    
        public void loginFailure(final OptionalThing<LoginCredential> credential) {
            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.LOGIN_FAILURE.name());
            credential.ifPresent(c -> {
                valueMap.put("class", c.getClass().getSimpleName());
                if (c instanceof final FessCredential fessCredential) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

    import org.lastaflute.web.response.ApiResponse;
    import org.lastaflute.web.response.JsonResponse;
    
    /**
     * @author jflute
     */
    public class FessApiFailureHook implements ApiFailureHook { // #change_it for handling API failure
    
        private static final Logger logger = LogManager.getLogger(FessApiFailureHook.class);
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

        }
    
        public void test_loginFailure() {
            activityHelper.useEcsFormat = false;
            activityHelper.loginFailure(OptionalThing.empty());
            assertEquals("action:LOGIN_FAILURE", localLogMsg.get());
        }
    
        public void test_logout() {
            activityHelper.useEcsFormat = false;
            activityHelper.logout(OptionalThing.empty());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        public static final String THUMBNAIL_ENALBED_PROPERTY = "thumbnail.enabled";
    
        public static final String IGNORE_FAILURE_TYPE_PROPERTY = "failure.ignoretype";
    
        public static final String FAILURE_COUNT_THRESHOLD_PROPERTY = "failure.countthreshold";
    
        public static final String CSV_FILE_ENCODING_PROPERTY = "csv.file.encoding";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_failure_url_error_count = "{labels.failure_url_error_count}";
    
        /** The key of the message: Failure URL Details */
        public static final String LABELS_failure_url_title_details = "{labels.failure_url_title_details}";
    
        /** The key of the message: ID */
        public static final String LABELS_failure_url_id = "{labels.failure_url_id}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

        @Override
        public FailureUrlDbm asDBMeta() {
            return FailureUrlDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "failure_url";
        }
    
        // ===================================================================================
        //                                                                              Source
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
Back to top