Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 301 for Document (0.45 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing boost document configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing boost document entries,
     * including tracking information for optimistic locking and audit trails.
     * Boost documents are used to increase the relevance score of specific documents in search results.
     *
     */
    public class EditForm extends CreateForm {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * A matcher class for applying document boost values based on configurable expressions.
     * This class evaluates match and boost expressions against document data to determine
     * if a document should receive a boost and what boost value to apply. It supports
     * script-based expressions for flexible document scoring.
     *
     */
    public class DocBoostMatcher {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    crawler.document.append.filename=false
    # Maximum size of alphanumeric terms in documents.
    crawler.document.max.alphanum.term.size=20
    # Maximum size of symbol terms in documents.
    crawler.document.max.symbol.term.size=10
    # Whether to remove duplicate terms in documents.
    crawler.document.duplicate.term.removed=false
    # Unicode space characters for document parsing.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/xml/DomUtil.java

            return new String(buf);
        }
    
        /**
         * Converts a {@link Document} to a string.
         *
         * @param document
         *            The document. Must not be {@literal null}.
         * @return The converted string.
         */
        public static String toString(final Document document) {
            assertArgumentNotNull("document", document);
    
            final StringBuilder buf = new StringBuilder(1000);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            // (shallow copy behavior)
            assertEquals("modified", result.getDocumentList().get(0).get("id"));
    
            // Document list size should remain the same
            assertEquals(1, result.getDocumentList().size());
        }
    
        public void test_multipleBuilds() {
            // Test that each builder creates independent results
            // Create first result with one document
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            // Add first document - should trigger indexing because cache size is 1
            Map<String, Object> dataMap1 = new HashMap<>();
            dataMap1.put("url", "http://example.com/test1");
            indexUpdateCallback.store(paramMap, dataMap1);
            assertEquals(1, indexingHelper.sendDocumentsCalled);
    
            // Add second document - should trigger indexing again
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            }
    
            /**
             * Deletes old documents from the search index.
             * This method removes documents that were indexed in previous
             * crawling sessions for the same data configuration, keeping
             * only the documents from the current session.
             *
             * <p>The deletion process:</p>
             * <ul>
             *   <li>Checks if old document deletion is enabled</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            Document document = getDocument(data);
            String value = transformer.getSingleNodeValue(document, "//BODY", node -> node);
            assertEquals("aaa bbb ccc", value);
    
            data = "<html><body> aaa <p> bbb <b>ccc</b> </p> </body></html>";
            document = getDocument(data);
            value = transformer.getSingleNodeValue(document, "//BODY", node -> node);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
        /** The document paths to include in search results (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedDocPaths;
    
        /** The document paths to exclude from search results (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java

                break;
            default:
                break;
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Get a boost document rule from a form.
         * @param form The create form.
         * @return An optional entity of a boost document rule.
         */
        public static OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final CreateForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
Back to top