Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for thresholds (0.22 sec)

  1. src/main/resources/fess_label_ja.properties

    labels.append_query_param_enabled=検索パラメーターの追加
    labels.login_required=ログインが必要
    labels.result_collapsed=重複結果の折り畳み
    labels.login_link=ログインリンク表示
    labels.thumbnail=サムネイル表示
    labels.ignore_failure_type=除外するエラーの種類
    labels.failure_count_threshold=障害数のしきい値
    labels.popular_word_word_enabled=人気ワードのレスポンス
    labels.supported_search_web=ウェブ
    labels.supported_search_none=利用不可
    labels.purge_search_log_day=以前の検索ログを削除
    labels.purge_job_log_day=以前のジョブログを削除
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 262144000 */
        String HTTP_FILEUPLOAD_MAX_SIZE = "http.fileupload.max.size";
    
        /** The key of the configuration. e.g. 262144 */
        String HTTP_FILEUPLOAD_THRESHOLD_SIZE = "http.fileupload.threshold.size";
    
        /** The key of the configuration. e.g. groovy */
        String CRAWLER_DEFAULT_SCRIPT = "crawler.default.script";
    
        /** The key of the configuration. e.g. 0 */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  3. src/main/resources/fess_label_ru.properties

    labels.login_required=Login Required
    labels.login_link=Login Link
    labels.thumbnail=Thumbnail View
    labels.ignore_failure_type=Excluded Failure Type
    labels.failure_count_threshold=Failure Count Threshold
    labels.popular_word_word_enabled=Popular Word Response
    labels.supported_search_web=Web
    labels.supported_search_none=Not Available
    labels.purge_search_log_day=Purge Search Log Before
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  4. 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";
    
        public static final String PURGE_SEARCH_LOG_DAY_PROPERTY = "purge.searchlog.day";
    
    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)
  5. src/main/resources/fess_config.properties

    # Virtual Host: Host:fess.codelibs.org=fess
    virtual.host.headers=
    
    http.proxy.host=
    http.proxy.port=8080
    http.proxy.username=
    http.proxy.password=
    http.fileupload.max.size=262144000
    http.fileupload.threshold.size=262144
    
    # ========================================================================================
    #                                                                                   Index
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_ignore_failure_type = "{labels.ignore_failure_type}";
    
        /** The key of the message: Failure Count Threshold */
        public static final String LABELS_failure_count_threshold = "{labels.failure_count_threshold}";
    
        /** The key of the message: Popular Word Response */
        public static final String LABELS_popular_word_word_enabled = "{labels.popular_word_word_enabled}";
    
    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)
  7. src/main/resources/fess_label_de.properties

    labels.result_collapsed=Ähnliche Ergebnisse eingeklappt
    labels.login_link=Login-Link
    labels.thumbnail=Miniaturansicht
    labels.ignore_failure_type=Ausgeschlossener Fehlertyp
    labels.failure_count_threshold=Schwelle für Fehleranzahl
    labels.popular_word_word_enabled=Beliebte Wortanfrage
    labels.supported_search_web=Web
    labels.supported_search_none=Nicht verfügbar
    labels.purge_search_log_day=Bereinige Suchprotokoll nach
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.login_required	=	Connexion requise
    labels.result_collapsed	=	Résultat similaire réduit
    labels.login_link	=	Lien de connexion
    labels.thumbnail	=	Vue miniature
    labels.ignore_failure_type	=	Type d'échec exclu
    labels.failure_count_threshold	=	Seuil du nombre d'échecs
    labels.popular_word_word_enabled	=	Réponse de mot populaire
    labels.supported_search_web	=	Web
    labels.supported_search_none	=	Indisponible
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                }
            }, FailureUrlBhv.class.getCanonicalName());
    
            assertEquals(0, crawlingConfigHelper.getExcludedUrlList("123").size());
            systemProperties.setProperty(Constants.FAILURE_COUNT_THRESHOLD_PROPERTY, "0");
            assertEquals(0, crawlingConfigHelper.getExcludedUrlList("123").size());
            errorCount.set(5);
            assertEquals(5, crawlingConfigHelper.getExcludedUrlList("123").size());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setFailureCountThreshold(final int value) {
            setSystemPropertyAsInt(Constants.FAILURE_COUNT_THRESHOLD_PROPERTY, value);
        }
    
        default int getFailureCountThreshold() {
            return getSystemPropertyAsInt(Constants.FAILURE_COUNT_THRESHOLD_PROPERTY, Constants.DEFAULT_FAILURE_COUNT);
        }
    
        default void setWebApiPopularWord(final boolean value) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top