Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for seorang (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

         * and form inputs for the given parameters.
         *
         * @param paramMap the parameter map to process
         * @param queryKey the key for storing query string parameters
         * @param formKey the key for storing form input parameters
         */
        protected void buildInitParamMap(final Map<String, String> paramMap, final String queryKey, final String formKey) {
            if (!paramMap.isEmpty()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            logger.info("Creating new suggest index.");
            suggestHelper.suggester().createNextIndex();
    
            logger.info("Storing all bad words.");
            suggestHelper.storeAllBadWords(true);
    
            logger.info("Storing all elevate words.");
            suggestHelper.storeAllElevateWords(true);
    
            final AtomicInteger exitCode = new AtomicInteger(0);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        protected List<String> contentFieldList;
    
        /** The popular word helper for handling popular words. */
        protected PopularWordHelper popularWordHelper = null;
    
        /** The interval for storing search logs. */
        protected long searchStoreInterval = 1; // min
    
        /**
         * Initializes the SuggestHelper.
         * This method sets up the suggester, configures field names, and initializes
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service for managing stopwords.
     * This class provides methods to interact with stopwords dictionaries,
     * including retrieving, storing, and deleting stopwords.
     */
    public class StopwordsService {
        /** The dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/SynonymService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service for managing synonyms.
     * This class provides methods to interact with synonym dictionaries,
     * including retrieving, storing, and deleting synonyms.
     */
    public class SynonymService {
        /** The dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        protected int userInfoCacheSize = 10000;
    
        /** Queue for storing search logs. */
        protected Queue<SearchLog> searchLogQueue = new ConcurrentLinkedQueue<>();
    
        /** Queue for storing click logs. */
        protected Queue<ClickLog> clickLogQueue = new ConcurrentLinkedQueue<>();
    
        /** Cache for storing user information. */
        protected LoadingCache<String, UserInfo> userInfoCache;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

            dataStore = new DataStore() {
                @Override
                public void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap) {
                    // Simulate storing documents
                    Map<String, Object> doc1 = new HashMap<>();
                    doc1.put("id", "1");
                    doc1.put("title", "Document 1");
                    callback.store(initParamMap, doc1);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

        protected long cacheExpireAfterWrite = 10 * 60 * 1000L;
    
        /** Cache for storing statistics objects keyed by crawler object identifiers. */
        protected LoadingCache<String, StatsObject> statsCache;
    
        /**
         * Initializes the crawler statistics helper.
         * Sets up the statistics logger and creates the cache for storing
         * statistics objects with the configured size and expiration settings.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            // Test commit after concurrent operations
            callback.commit();
        }
    
        public void test_store_with_various_data_types() {
            // Test storing various data types
            final AtomicInteger callCount = new AtomicInteger(0);
    
            IndexUpdateCallback callback = new IndexUpdateCallback() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

        private static final Logger logger = LogManager.getLogger(PopularWordHelper.class);
    
        /** Character used to separate cache key components */
        protected static final char CACHE_KEY_SPLITTER = '\n';
    
        /** Cache for storing popular word lists */
        protected Cache<String, List<String>> cache;
    
        /** Fess configuration instance */
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top