Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for BoostDocumentRule (0.47 sec)

  1. 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) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. 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() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  3. 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;
    
    /**
     * @author shinsuke
     */
    public class ApiAdminBoostdocAction extends FessApiAdminAction {
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  4. 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(),
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  5. 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);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  6. 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) {
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  7. 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;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  8. 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>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 09 02:14:47 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  9. 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">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 4.5K bytes
    - Viewed (0)
  10. 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;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
Back to top