- Sort Score
- Num 10 results
- Language All
Results 11 - 16 of 16 for getIndexFieldBoost (0.09 seconds)
-
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
final String indexFieldFavoriteCount = fessConfig.getIndexFieldFavoriteCount(); final String indexFieldClickCount = fessConfig.getIndexFieldClickCount(); final String indexFieldBoost = fessConfig.getIndexFieldBoost(); final String indexFieldRole = fessConfig.getIndexFieldRole(); final String indexFieldLastModified = fessConfig.getIndexFieldLastModified();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
public void test_indexFieldRole() { assertEquals("role", fessConfig.getIndexFieldRole()); } @Test public void test_indexFieldBoost() { assertEquals("boost", fessConfig.getIndexFieldBoost()); } @Test public void test_indexFieldTitle() { assertEquals("title", fessConfig.getIndexFieldTitle()); } @Test public void test_indexFieldContent() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
*/ protected void addBoostValue(final Map<String, Object> map, final float documentBoost) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); map.put(fessConfig.getIndexFieldBoost(), documentBoost); if (logger.isDebugEnabled()) { logger.debug("Document boost applied: boost={}, url={}", documentBoost, map.get(fessConfig.getIndexFieldUrl())); } } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
} // indexingTarget putResultDataBody(dataMap, Constants.INDEXING_TARGET, indexingTarget); // boost putResultDataBody(dataMap, fessConfig.getIndexFieldBoost(), crawlingConfig.getDocumentBoost()); // label: labelType final LabelTypeHelper labelTypeHelper = ComponentUtil.getLabelTypeHelper();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} // indexingTarget putResultDataBody(dataMap, Constants.INDEXING_TARGET, indexingTarget); // boost putResultDataBody(dataMap, fessConfig.getIndexFieldBoost(), crawlingConfig.getDocumentBoost()); // label: labelType putResultDataBody(dataMap, fessConfig.getIndexFieldLabel(), labelTypeHelper.getMatchedLabelValueSet(url)); // role: roleTypeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* The value is, e.g. boost <br> * comment: Field name for boost value in the index. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexFieldBoost(); /** * Get the value for the key 'index.field.created'. <br> * The value is, e.g. created <br> * comment: Field name for creation date in the index.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2)