Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getBoostedDocumentList (0.19 sec)

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

            keyMatch.setId("nonexistent");
            keyMatch.setTerm("nonexistent");
            keyMatch.setVirtualHost("");
    
            try {
                List<Map<String, Object>> result = keyMatchHelper.getBoostedDocumentList(keyMatch);
                assertNotNull(result);
            } catch (Exception e) {
                // Expected due to missing dependencies in test environment
                assertTrue(true);
                return;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

                            copyOp.excludeNull();
                        });
                        form.crudMode = crudMode;
                        docList.addAll(keyMatchHelper.getBoostedDocumentList(entity));
                    }).orElse(() -> {
                        throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), this::asListHtml);
                    });
                });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

         *
         * @param keyMatch The KeyMatch instance.
         * @return A list of boosted documents.
         */
        public List<Map<String, Object>> getBoostedDocumentList(final KeyMatch keyMatch) {
            final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient();
            String virtualHost = keyMatch.getVirtualHost();
            if (StringUtil.isBlank(virtualHost)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top