- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 369 for documented (1.45 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
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)