Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for batean (0.03 sec)

  1. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

            assertEquals(params, testSearcher.lastParams);
            assertEquals(userBean, testSearcher.lastUserBean);
        }
    
        public void test_search_withUserBean() {
            // Test search with user bean present
            TestRankFusionSearcher testSearcher = new TestRankFusionSearcher();
            String query = "user query";
            SearchRequestParams params = createTestSearchRequestParams();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

         * This method applies various filter conditions based on the pager parameters
         * including name, paths, and description filters with wildcard and phrase matching.
         *
         * @param cb the condition bean for building the database query
         * @param fileConfigPager the pager containing search filter criteria
         */
        protected void setupListCondition(final FileConfigCB cb, final FileConfigPager fileConfigPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/BadWordService.java

            badWordBhv.delete(badWord, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
        /**
         * Sets up search conditions for bad word list queries.
         * @param cb The condition bean for the query.
         * @param badWordPager The pager containing search criteria.
         */
        protected void setupListCondition(final BadWordCB cb, final BadWordPager badWordPager) {
            if (badWordPager.id != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/QueryProcessor.java

        /**
         * Initializes the query processor after construction.
         * This method creates the initial filter chain from the registered filters.
         * Called automatically by the DI container after bean construction.
         */
        @PostConstruct
        public void init() {
            createFilterChain();
        }
    
        /**
         * Executes query processing through the filter chain.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         * from the data store. This method is called automatically after dependency
         * injection is complete.
         *
         * PostConstruct annotation ensures this method is called after the bean
         * has been constructed and all dependencies have been injected.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

         * Initializes the process management system with default timeout values.
         */
        public ProcessHelper() {
            // Default constructor
        }
    
        /**
         * Cleanup method called when the bean is destroyed.
         * Stops all running processes and cleans up resources.
         */
        @PreDestroy
        public void destroy() {
            for (final String sessionId : runningProcessMap.keySet()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

        }
    
        /**
         * Initializes the protocol helper by loading configured protocols from FessConfig
         * and scanning for available protocol handlers in the classpath.
         * This method is called automatically after bean construction.
         */
        @PostConstruct
        public void init() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            webProtocols = split(fessConfig.getCrawlerWebProtocols(), ",")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

            return trimPrefix(srcPropertyName.replace(beanDelimiter, mapDelimiter));
        }
    
        /**
         * Converts the source property name to the destination property name for use in a Bean.
         *
         * @param srcPropertyName
         *            The source property name
         * @return The destination property name
         */
        protected String toBeanDestPropertyName(final String srcPropertyName) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         * Applies filters based on the pager criteria such as ID and session ID,
         * and orders results by creation time in descending order.
         *
         * @param cb the condition bean for building the database query
         * @param crawlingInfoPager the pager containing filter criteria
         */
        protected void setupListCondition(final CrawlingInfoCB cb, final CrawlingInfoPager crawlingInfoPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java

    import org.opensearch.search.SearchHits;
    import org.opensearch.transport.client.Client;
    
    import jakarta.annotation.Resource;
    
    /**
     * @param <ENTITY> The type of entity.
     * @param <CB> The type of condition-bean.
     * @author ESFlute (using FreeGen)
     */
    public abstract class EsAbstractBehavior<ENTITY extends Entity, CB extends ConditionBean> extends AbstractBehaviorWritable<ENTITY, CB> {
    
        @Resource
        private Client client;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
Back to top