Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for keymatch (0.3 sec)

  1. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for KeyMatch.
     */
    public class KeyMatchPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public KeyMatchPager() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            verifyPathPattern("AdminFileconfig", "/admin/fileconfig/");
            verifyPathPattern("AdminGroup", "/admin/group/");
            verifyPathPattern("AdminKeymatch", "/admin/keymatch/");
            verifyPathPattern("AdminLabeltype", "/admin/labeltype/");
            verifyPathPattern("AdminPathmap", "/admin/pathmap/");
            verifyPathPattern("AdminRelatedcontent", "/admin/relatedcontent/");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    online.help.name.general=general
    # Online help key for role.
    online.help.name.role=role
    # Online help key for job log.
    online.help.name.joblog=joblog
    # Online help key for keymatch.
    online.help.name.keymatch=keymatch
    # Online help key for related query.
    online.help.name.relatedquery=relatedquery
    # Online help key for related content.
    online.help.name.relatedcontent=relatedcontent
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

    import org.codelibs.fess.app.web.admin.general.AdminGeneralAction;
    import org.codelibs.fess.app.web.admin.group.AdminGroupAction;
    import org.codelibs.fess.app.web.admin.joblog.AdminJoblogAction;
    import org.codelibs.fess.app.web.admin.keymatch.AdminKeymatchAction;
    import org.codelibs.fess.app.web.admin.labeltype.AdminLabeltypeAction;
    import org.codelibs.fess.app.web.admin.log.AdminLogAction;
    import org.codelibs.fess.app.web.admin.maintenance.AdminMaintenanceAction;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'page.keymatch.max.fetch.size'. <br>
         * The value is, e.g. 1000 <br>
         * comment: Maximum number of keymatch records to fetch per page.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getPageKeymatchMaxFetchSize();
    
        /**
         * Get the value for the key 'page.keymatch.max.fetch.size' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            updateConfigListenerMap.put("RelatedQuery", () -> Integer.toString(ComponentUtil.getRelatedQueryHelper().load()));
            updateConfigListenerMap.put("KeyMatch", () -> Integer.toString(ComponentUtil.getKeyMatchHelper().load()));
        }
    
        /**
         * Parses project properties from the given path.
         *
         * @param propPath The path to the project properties file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsKeyMatchCB.java

    import org.codelibs.fess.opensearch.config.bsentity.dbmeta.KeyMatchDbm;
    import org.codelibs.fess.opensearch.config.cbean.KeyMatchCB;
    import org.codelibs.fess.opensearch.config.cbean.ca.KeyMatchCA;
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsKeyMatchCA;
    import org.codelibs.fess.opensearch.config.cbean.cq.KeyMatchCQ;
    import org.codelibs.fess.opensearch.config.cbean.cq.bs.BsKeyMatchCQ;
    import org.dbflute.cbean.ConditionQuery;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsKeyMatch.java

        @Override
        public KeyMatchDbm asDBMeta() {
            return KeyMatchDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "key_match";
        }
    
        // ===================================================================================
        //                                                                              Source
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/cbean/KeyMatchCB.java

     */
    package org.codelibs.fess.opensearch.config.cbean;
    
    import org.codelibs.fess.opensearch.config.cbean.bs.BsKeyMatchCB;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class KeyMatchCB extends BsKeyMatchCB {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 832 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/KeyMatchCQ.java

     */
    package org.codelibs.fess.opensearch.config.cbean.cq;
    
    import org.codelibs.fess.opensearch.config.cbean.cq.bs.BsKeyMatchCQ;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class KeyMatchCQ extends BsKeyMatchCQ {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 838 bytes
    - Viewed (0)
Back to top