- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for boost_document_rule (0.18 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/BoostDocumentRuleDbm.java
{ setupEpg(_epgMap, et -> ((BoostDocumentRule) et).getBoostExpr(), (et, vl) -> ((BoostDocumentRule) et).setBoostExpr(DfTypeUtil.toString(vl)), "boostExpr"); setupEpg(_epgMap, et -> ((BoostDocumentRule) et).getCreatedBy(), (et, vl) -> ((BoostDocumentRule) et).setCreatedBy(DfTypeUtil.toString(vl)), "createdBy"); setupEpg(_epgMap, et -> ((BoostDocumentRule) et).getCreatedTime(),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsBoostDocumentRuleCB.java
@Override public BoostDocumentRuleDbm asDBMeta() { return BoostDocumentRuleDbm.getInstance(); } @Override public String asTableDbName() { return "boost_document_rule"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsBoostDocumentRuleBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends BoostDocumentRule> typeOfSelectedEntity() { return BoostDocumentRule.class; } @Override protected Class<BoostDocumentRule> typeOfHandlingEntity() { return BoostDocumentRule.class; } @Override protected Class<BoostDocumentRuleCB> typeOfHandlingConditionBean() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsBoostDocumentRule.java
@Override public BoostDocumentRuleDbm asDBMeta() { return BoostDocumentRuleDbm.getInstance(); } @Override public String asTableDbName() { return "boost_document_rule"; } // =================================================================================== // Source
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsBoostDocumentRuleCQ.java
// ============= @Override public String asTableDbName() { return "boost_document_rule"; } @Override public String xgetAliasName() { return "boost_document_rule"; } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 56.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/BoostDocumentRule.java
*/ package org.codelibs.fess.opensearch.config.exentity; import org.codelibs.fess.opensearch.config.bsentity.BsBoostDocumentRule; /** * @author FreeGen */ public class BoostDocumentRule extends BsBoostDocumentRule { private static final long serialVersionUID = 1L; public String getId() { return asDocMeta().id(); } public void setId(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
*/ public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) { return boostDocumentRuleBhv.selectByPK(id); } /** * Stores (inserts or updates) a boost document rule. * @param boostDocumentRule The boost document rule to store. */ public void store(final BoostDocumentRule boostDocumentRule) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
} /** * Creates an EditBody from a BoostDocumentRule entity for API responses. * * @param entity the BoostDocumentRule entity to convert * @return the converted EditBody object */ protected EditBody createEditBody(final BoostDocumentRule entity) { final EditBody form = new EditBody();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
import java.util.Arrays; import java.util.Collections; import java.util.List; import org.codelibs.fess.Constants; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.opensearch.config.exentity.BoostDocumentRule; import org.codelibs.fess.opensearch.config.exentity.FileConfig; import org.codelibs.fess.opensearch.config.exentity.WebConfig; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
scriptType = Constants.DEFAULT_SCRIPT; } /** * Constructor that creates a DocBoostMatcher from a BoostDocumentRule. * * @param rule the boost document rule containing match and boost expressions */ public DocBoostMatcher(final BoostDocumentRule rule) { matchExpression = rule.getUrlExpr(); boostExpression = rule.getBoostExpr();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0)