Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 191 for Bean (0.01 sec)

  1. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o targetProcedureCatalogList: (NotRequired - Default list:{})
        #  You can specify target catalog of generated parameter bean for procedure.
        #  This property is valid only when generateProcedureParameterBean is valid.
        #
        #; targetProcedureCatalogList = list:{FOO_CATALOG ; prefix:FOO_ ; suffix:_FOO ; contain:_FOO_}
        # - - - - - - - - - -/
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

         *
         * <p>This method configures the condition bean with search criteria from the pager,
         * including regular name wildcards and duplicate hostname wildcards.
         * Results are ordered by sort order and creation time in ascending order.</p>
         *
         * @param cb the condition bean to configure
         * @param duplicateHostPager the pager containing search criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       *
       * {@snippet :
       * public static final ImmutableSortedMultiset<Bean> BEANS =
       *     new ImmutableSortedMultiset.Builder<Bean>(colorComparator())
       *         .addCopies(Bean.COCOA, 4)
       *         .addCopies(Bean.GARDEN, 6)
       *         .addCopies(Bean.RED, 8)
       *         .addCopies(Bean.BLACK_EYED, 10)
       *         .build();
       * }
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 29.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        protected static final Object[] EMPTY_ARGS = new Object[0];
    
        /** Empty class array */
        protected static final Class<?>[] EMPTY_PARAM_TYPES = new Class<?>[0];
    
        /** The class of the bean */
        protected final Class<?> beanClass;
    
        /** Map of type arguments and type variables */
        protected final Map<TypeVariable<?>, Type> typeVariables;
    
        /** Map from property name to {@link PropertyDesc} */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

        }
    
        /**
         * Creates search conditions for search log queries based on pager criteria.
         *
         * @param pager The search log pager containing filter criteria
         * @param cb The search log condition bean to configure
         */
        private void createSearchLogCondition(final SearchLogPager pager, final SearchLogCB cb) {
            if (StringUtil.isNotBlank(pager.queryId)) {
                cb.query().setQueryId_Term(pager.queryId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

            boostDocumentRuleBhv.delete(boostDocumentRule, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
        /**
         * Sets up search conditions for boost document rule list queries.
         * @param cb The condition bean for the query.
         * @param boostDocumentRulePager The pager containing search criteria.
         */
        protected void setupListCondition(final BoostDocumentRuleCB cb, final BoostDocPager boostDocumentRulePager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

                cb.fetchFirst(fessConfig.getPagePathMappingMaxFetchSizeAsInteger());
            });
        }
    
        /**
         * Sets up list condition for path mapping search.
         *
         * @param cb the condition bean
         * @param pathMappingPager the path mapping pager
         */
        protected void setupListCondition(final PathMappingCB cb, final PathMapPager pathMappingPager) {
            if (StringUtil.isNotBlank(pathMappingPager.regex)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Sets up the list condition for querying web authentications.
         *
         * @param cb The condition bean for the query
         * @param webAuthenticationPager The pager containing search criteria
         */
        protected void setupListCondition(final WebAuthenticationCB cb, final WebAuthPager webAuthenticationPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

            });
    
        }
    
        /**
         * Sets up the database query conditions for retrieving request headers based on pager criteria.
         *
         * @param cb the condition bean for building the database query
         * @param requestHeaderPager the pager containing search and filter criteria
         */
        protected void setupListCondition(final RequestHeaderCB cb, final ReqHeaderPager requestHeaderPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/UserService.java

            });
    
        }
    
        /**
         * Sets up the search conditions for user list queries based on pager criteria.
         * Configures the condition bean with search filters and ordering.
         *
         * @param cb the condition bean for the user query
         * @param userPager the pager containing search criteria
         */
        protected void setupListCondition(final UserCB cb, final UserPager userPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
Back to top