Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Indexer (0.14 sec)

  1. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                suggester.indexer().addBadWord(word, apply);
            }
            refresh();
        }
    
        /**
         * Adds a bad word to the suggest index.
         *
         * @param badWord The bad word to add.
         * @param apply   true to apply the changes immediately.
         */
        public void addBadWord(final String badWord, final boolean apply) {
            suggester.indexer().addBadWord(badWord, apply);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    indexer.webfs.commit.margin.time=5000
    # Maximum number of empty lists for webfs in the indexer.
    indexer.webfs.max.empty.list.count=3600
    # Update interval (ms) for webfs in the indexer.
    indexer.webfs.update.interval=10000
    # Maximum document cache size for webfs in the indexer.
    indexer.webfs.max.document.cache.size=10
    # Maximum document request size (bytes) for webfs in the indexer.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 5000 */
        String INDEXER_WEBFS_COMMIT_MARGIN_TIME = "indexer.webfs.commit.margin.time";
    
        /** The key of the configuration. e.g. 3600 */
        String INDEXER_WEBFS_MAX_EMPTY_LIST_COUNT = "indexer.webfs.max.empty.list.count";
    
        /** The key of the configuration. e.g. 10000 */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

            }
        }
    
        private static class MockSuggester {
            private MockSuggestIndexer indexer = new MockSuggestIndexer();
            private MockSuggestSettings settings = new MockSuggestSettings();
    
            public MockSuggestIndexer indexer() {
                return indexer;
            }
    
            public MockSuggestSettings settings() {
                return settings;
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

    import org.codelibs.fess.crawler.service.impl.OpenSearchUrlFilterService;
    import org.codelibs.fess.crawler.service.impl.OpenSearchUrlQueueService;
    import org.codelibs.fess.indexer.IndexUpdater;
    import org.codelibs.fess.opensearch.config.exbhv.BoostDocumentRuleBhv;
    import org.codelibs.fess.opensearch.config.exentity.BoostDocumentRule;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            ((TestDataService) dataService).setAccessResultList(new TestOpenSearchResultList());
    
            // Start indexer in separate thread
            indexUpdater.start();
    
            // Let it run briefly
            ThreadUtil.sleep(100);
    
            // Stop the indexer
            indexUpdater.setFinishCrawling(true);
    
            // Wait for completion with longer timeout
            indexUpdater.join(3000);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.indexer;
    
    import java.util.Map;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.opensearch.config.exentity.BoostDocumentRule;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.indexer;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.function.Consumer;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ComponentUtil.java

    import org.codelibs.fess.helper.UserAgentHelper;
    import org.codelibs.fess.helper.UserInfoHelper;
    import org.codelibs.fess.helper.ViewHelper;
    import org.codelibs.fess.helper.VirtualHostHelper;
    import org.codelibs.fess.indexer.IndexUpdater;
    import org.codelibs.fess.ingest.IngestFactory;
    import org.codelibs.fess.job.JobExecutor;
    import org.codelibs.fess.ldap.LdapManager;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Streams.java

       * reported {@link Spliterator#SUBSIZED}. This is generally the case if the underlying stream
       * comes from a data structure supporting efficient indexed random access, typically an array or
       * list.
       *
       * <p>The order of the resulting stream is defined if and only if the order of the original stream
       * was defined.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
Back to top