Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Searcher (0.26 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            }
        }
    
        /**
         * Sets the main searcher at index 0 of the searchers array.
         * This method is used to configure the primary searcher for rank fusion processing.
         *
         * @param searcher the RankFusionSearcher to set as the main searcher
         */
        public void setSeacher(final RankFusionSearcher searcher) {
            searchers[0] = searcher;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

            }
    
            final String[] searchers = DocumentUtil.getValue(docMap, Constants.SEARCHER, String[].class);
            if (searchers != null) {
                docMap.put(Constants.SEARCHER, ArrayUtil.add(searchers, getName()));
            } else {
                docMap.put(Constants.SEARCHER, new String[] { getName() });
            }
    
            return docMap;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

        }
    
        public void test_getName_customSearcherClass() {
            // Test with different searcher implementation
            RankFusionSearcher customSearcher = new CustomSearcher();
            assertEquals("custom", customSearcher.getName());
        }
    
        public void test_getName_simpleSearcherClass() {
            // Test with simple searcher name
            RankFusionSearcher simpleSearcher = new SimpleSearcher();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

            });
            return asHtml(path_AdminLabeltype_AdminLabeltypeJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Searches label types based on the form criteria.
         *
         * @param form the search form
         * @return HTML response for the search results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

        }
    
        /**
         * Appends various search conditions to the query buffer.
         * Processes advanced search parameters like occurrence, phrases, OR queries, NOT queries,
         * file types, site searches, and timestamp filters.
         *
         * @param queryBuf the StringBuilder to append conditions to
         * @param conditions a map of condition types to their values
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

                groupPager.setCurrentPageNumber(0);
            });
            return asHtml(path_AdminGroup_AdminGroupJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Searches groups based on the form criteria.
         *
         * @param form the search form
         * @return HTML response for the search results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                    return true;
                }
                return req.isSecure();
            }).orElse(false);
        }
    
        /**
         * Extracts the user code from the user identification cookie.
         * Searches through all request cookies to find the user identification cookie and validates its value.
         *
         * @param request the HTTP servlet request
         * @return the user code from the cookie, or null if not found or invalid
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                userPager.setCurrentPageNumber(0);
            });
            return asHtml(path_AdminUser_AdminUserJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Searches for users based on the provided search criteria.
         *
         * @param form the search form containing search criteria
         * @return HTML response with filtered user results
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

            });
            return asHtml(path_AdminFileconfig_AdminFileconfigJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Searches file configurations based on the form criteria.
         *
         * @param form the search form
         * @return HTML response for the search results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

            });
            return asHtml(path_AdminWebconfig_AdminWebconfigJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Searches for web crawler configurations based on the provided search criteria.
         *
         * @param form the search form containing search criteria
         * @return HTML response with filtered web config results
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top