- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 178 for boost (0.02 seconds)
-
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
// Test constructor with zero boost String word = "zero boost"; float boost = 0.0f; List<String> readings = Arrays.asList("reading1"); List<String> fields = Arrays.asList("field1"); List<String> tags = Arrays.asList("tag1"); List<String> roles = Arrays.asList("role1"); elevateWord = new ElevateWord(word, boost, readings, fields, tags, roles);Created: 2025-12-20 13:04 - Last Modified: 2025-09-01 13:33 - 16K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
@Override public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { if (query instanceof final TermQuery termQuery) { if (logger.isDebugEnabled()) { logger.debug("TermQuery: query={}, boost={}", query, boost); } return convertTermQuery(context, termQuery, boost); }Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 13.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/entity/ElevateWord.java
/** * Represents an elevate word entity with associated properties such as boost, readings, fields, tags, and roles. */ public class ElevateWord { /** * The elevate word. */ protected final String elevateWord; /** * The boost value associated with the elevate word. */ protected final float boost; /** * The list of readings associated with the elevate word.Created: 2025-12-20 13:04 - Last Modified: 2025-07-04 14:00 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java
public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { if (query instanceof final TermRangeQuery termRangeQuery) { if (logger.isDebugEnabled()) { logger.debug("TermRangeQuery: query={}, boost={}", query, boost); } return convertTermRangeQuery(context, termRangeQuery, boost); }
Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 4.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
/** * 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 { /** The expression used to calculate the boost value (defaults to "0") */Created: 2025-12-20 09:19 - Last Modified: 2025-07-17 08:28 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { if (query instanceof final WildcardQuery wildcardQuery) { if (logger.isDebugEnabled()) { logger.debug("WildcardQuery: query={}, boost={}", query, boost); } return convertWildcardQuery(context, wildcardQuery, boost); }
Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
} /** * Gets a boost document rule by its ID. * @param id The boost document rule ID. * @return Optional entity containing the boost document rule if found. */ public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) { return boostDocumentRuleBhv.selectByPK(id); } /** * Stores (inserts or updates) a boost document rule.Created: 2025-12-20 09:19 - Last Modified: 2025-07-17 08:28 - 4.5K bytes - Click Count (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. * */
Created: 2025-12-20 09:19 - Last Modified: 2025-07-17 08:28 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/SearchBody.java
/** * Search request body for boost document administration. * Extends BaseSearchBody with boost document-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The URL expression pattern to search for in boost documents. */ public String urlExpr; /** The boost expression to search for in boost documents. */ public String boostExpr; /**Created: 2025-12-20 09:19 - Last Modified: 2025-07-17 08:28 - 1.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
Created: 2025-12-20 09:19 - Last Modified: 2025-08-07 03:06 - 7.9K bytes - Click Count (0)