- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for BoostDocumentRule (0.31 sec)
-
src/main/java/org/codelibs/fess/es/config/exentity/BoostDocumentRule.java
*/ package org.codelibs.fess.es.config.exentity; import org.codelibs.fess.es.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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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 Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
} public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) { return boostDocumentRuleBhv.selectByPK(id); } public void store(final BoostDocumentRule boostDocumentRule) { boostDocumentRuleBhv.insertOrUpdate(boostDocumentRule, op -> op.setRefreshPolicy(Constants.TRUE)); } public void delete(final BoostDocumentRule boostDocumentRule) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
import org.codelibs.fess.app.web.api.ApiResult.ApiUpdateResponse; import org.codelibs.fess.app.web.api.ApiResult.Status; import org.codelibs.fess.app.web.api.admin.FessApiAdminAction; import org.codelibs.fess.es.config.exentity.BoostDocumentRule; import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * @author shinsuke */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.indexer; import java.util.Map; import org.codelibs.fess.Constants; import org.codelibs.fess.es.config.exentity.BoostDocumentRule; import org.codelibs.fess.util.ComponentUtil; public class DocBoostMatcher { private String boostExpression = "0"; private String matchExpression; private final String scriptType;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java
private static OptionalEntity<BoostDocumentRule> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new BoostDocumentRule()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/env/crawler/resources/app.xml
<property name="unprocessedDocumentSize">100</property> <property name="threadDump">false</property> <postConstruct name="addBoostDocumentRule"> <arg> <component class="org.codelibs.fess.indexer.BoostDocumentRule"> <property name="matchExpression">"url.matches(\".*fess.*\")"</property> <property name="boostExpression">"1000.0"</property> </component> </arg> </postConstruct> --> </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Apr 09 02:14:47 UTC 2022 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
import org.codelibs.fess.crawler.service.impl.EsUrlQueueService; import org.codelibs.fess.es.config.exbhv.BoostDocumentRuleBhv; import org.codelibs.fess.es.config.exentity.BoostDocumentRule; import org.codelibs.fess.es.config.exentity.CrawlingConfig.ConfigName; import org.codelibs.fess.es.config.exentity.CrawlingConfig.Param.Config; import org.codelibs.fess.es.config.exentity.FileConfig;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 22.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_details.jsp
<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="crawl"/> <jsp:param name="menuType" value="boostDocumentRule"/> </jsp:include> <div class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 4.5K bytes - Viewed (0)