Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 369 for documented (1.45 sec)

  1. src/main/java/org/codelibs/fess/score/ScoreBooster.java

         * @return The number of processed documents.
         */
        public abstract long process();
    
        /**
         * Enables this score booster.
         */
        protected void enable() {
            final ScoreUpdater scoreUpdater = ComponentUtil.getComponent("scoreUpdater");
            scoreUpdater.addScoreBooster(this);
        }
    
        /**
         * Updates the score of documents.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. 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)
  3. dbflute_fess/_readme.txt

    which gets your schema info and saves it to SchemaXML
    located to the "schema" directory.
    This task should be executed after ReplaceSchema task
    and before other tasks(e.g. Generate, Document task).
    
    manage.bat(sh) => 22 (doc):
    A execution command of Document task
    which creates documents, for example, SchemaHTML, HistoryHTML
    to the "output/doc" directory.
    
    manage.bat(sh) => 23 (generate):
    A execution command of Generate task
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

        //                                                                      ==============
        /**
         * Handles document redirection requests.
         * Validates the document ID, logs click events if enabled, and redirects
         * to the target URL or serves file content directly if configured.
         *
         * @param form the go form containing document ID and tracking parameters
         * @return action response for redirection or content streaming
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        /**
         * The boost value for documents from this web configuration.
         */
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        /**
         * Whether this web configuration is available for crawling.
         */
        @Required
        @Size(max = 5)
        public String available;
    
        /**
         * Permissions required to access documents from this configuration.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        /**
         * Adds a boost function with a filter to modify document scoring during search.
         * This method adds a boost function that applies only to documents matching the filter.
         *
         * @param filter the query filter to determine which documents the boost applies to
         * @param scoreFunction the score function to add for boosting
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ingest/Ingester.java

    import org.codelibs.fess.entity.DataStoreParams;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Abstract base class for document ingesters that process and transform documents
     * before they are indexed. Ingesters can be used to modify document content,
     * extract additional metadata, or perform other transformations during the
     * indexing process.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

            // Default constructor
        }
    
        /**
         * Enable or disable incremental crawling.
         * When enabled, only new or modified documents are crawled.
         */
        @Size(max = 10)
        public String incrementalCrawling;
    
        /**
         * Number of days to keep crawled documents before cleanup.
         * Set to -1 to disable automatic cleanup.
         */
        @Required
        @Min(-1)
        @Max(1000)
        @ValidateTypeFailure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

        }
    
        public void test_builder_withDocuments() {
            // Test builder with adding documents
            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("id", "1");
            doc1.put("title", "Document 1");
    
            Map<String, Object> doc2 = new HashMap<>();
            doc2.put("id", "2");
            doc2.put("title", "Document 2");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.java

    import jakarta.validation.constraints.Min;
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating boost document configurations.
     * Boost documents allow administrators to define URL patterns and boost expressions
     * to influence search result rankings for specific documents.
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public 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)
Back to top