Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for incremental (3.71 sec)

  1. src/main/java/org/codelibs/fess/Constants.java

        public static final String SEARCH_LOG_PROPERTY = "search.log";
    
        public static final String APPEND_QUERY_PARAMETER_PROPERTY = "append.query.parameter";
    
        public static final String INCREMENTAL_CRAWLING_PROPERTY = "crawling.incremental";
    
        public static final String CRAWLING_THREAD_COUNT_PROPERTY = "crawling.thread.count";
    
        public static final String CRAWLING_USER_AGENT_PROPERTY = "crawling.user.agent";
    
    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)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_crawling_thread_count = "{labels.crawling_thread_count}";
    
        /** The key of the message: Check Last Modified */
        public static final String LABELS_incremental_crawling = "{labels.incremental_crawling}";
    
        /** The key of the message: Search Logging */
        public static final String LABELS_search_log_enabled = "{labels.search_log_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)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setIncrementalCrawling(final boolean value) {
            setSystemPropertyAsBoolean(Constants.INCREMENTAL_CRAWLING_PROPERTY, value);
        }
    
        default boolean isIncrementalCrawling() {
            return getSystemPropertyAsBoolean(Constants.INCREMENTAL_CRAWLING_PROPERTY, true);
        }
    
        default void setDayForCleanup(final int 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)
  4. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            getCacheKey(keyObj).ifPresent(key -> {
                try {
                    final StatsObject data = statsCache.getIfPresent(key);
                    if (data != null) {
                        data.increment();
                    }
                } catch (final Exception e) {
                    final StringBuilder buf = createStringBuffer(keyObj, getCurrentTimeMillis());
                    buf.append('\t').append("action:record");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
Back to top