Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for labeltype (0.05 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'page.labeltype.max.fetch.size'. <br>
         * The value is, e.g. 1000 <br>
         * comment: Maximum number of labeltype records to fetch per page.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getPageLabeltypeMaxFetchSize();
    
        /**
         * Get the value for the key 'page.labeltype.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)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsLabelTypeCB.java

    import org.codelibs.fess.opensearch.config.bsentity.dbmeta.LabelTypeDbm;
    import org.codelibs.fess.opensearch.config.cbean.LabelTypeCB;
    import org.codelibs.fess.opensearch.config.cbean.ca.LabelTypeCA;
    import org.codelibs.fess.opensearch.config.cbean.ca.bs.BsLabelTypeCA;
    import org.codelibs.fess.opensearch.config.cbean.cq.LabelTypeCQ;
    import org.codelibs.fess.opensearch.config.cbean.cq.bs.BsLabelTypeCQ;
    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.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            putResultDataBody(dataMap, Constants.INDEXING_TARGET, indexingTarget);
            //  boost
            putResultDataBody(dataMap, fessConfig.getIndexFieldBoost(), crawlingConfig.getDocumentBoost());
            // label: labelType
            putResultDataBody(dataMap, fessConfig.getIndexFieldLabel(), labelTypeHelper.getMatchedLabelValueSet(url));
            // role: roleType
            final List<String> roleTypeList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsLabelType.java

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

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

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

     */
    package org.codelibs.fess.opensearch.config.cbean.cq;
    
    import org.codelibs.fess.opensearch.config.cbean.cq.bs.BsLabelTypeCQ;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class LabelTypeCQ extends BsLabelTypeCQ {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 841 bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess_config.label_type/label_type.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 646 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsLabelTypeCA.java

            LabelTypeCQ cq = new LabelTypeCQ();
            if (queryLambda != null) {
                queryLambda.callback(cq);
            }
            FilterAggregationBuilder builder = regFilterA(name, cq.getQuery());
            if (opLambda != null) {
                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                LabelTypeCA ca = new LabelTypeCA();
                aggsLambda.callback(ca);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 69.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsLabelTypeCQ.java

            LabelTypeCQ shouldQuery = new LabelTypeCQ();
            LabelTypeCQ mustNotQuery = new LabelTypeCQ();
            LabelTypeCQ filterQuery = new LabelTypeCQ();
            boolLambda.callback(mustQuery, shouldQuery, mustNotQuery, filterQuery);
            if (mustQuery.hasQueries() || shouldQuery.hasQueries() || mustNotQuery.hasQueries() || filterQuery.hasQueries()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 87.8K bytes
    - Viewed (0)
Back to top