Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __QUERY__ (0.03 sec)

  1. src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java

        public void test_load_regexTerms() {
            List<RelatedContent> testData = new ArrayList<>();
            testData.add(createRelatedContent("regex:test.*", "Test Content for __QUERY__", ""));
            testData.add(createRelatedContent("regex:[0-9]+", "Number: __QUERY__", ""));
            mockBhv.setTestData(testData);
    
            relatedContentHelper.load();
    
            String[] results = relatedContentHelper.getRelatedContents("testing");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         * This placeholder is replaced with the actual search query when
         * a regex pattern matches the query.
         */
        protected String queryPlaceHolder = "__QUERY__";
    
        /**
         * Initializes the RelatedContentHelper by loading related content configurations
         * from the data store. This method is called automatically after dependency
         * injection is complete.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
Back to top