Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 509 for query2 (0.1 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsCrawlingInfoParamCB.java

        //                                                                               Query
        //                                                                               =====
        public BsCrawlingInfoParamCQ query() {
            assertQueryPurpose();
            return doGetConditionQuery();
        }
    
        protected BsCrawlingInfoParamCQ doGetConditionQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

            // setup condition
            cb.query().addOrderBy_SortOrder_Asc();
            cb.query().addOrderBy_Name_Asc();
    
            // search
    
        }
    
        /**
         * Gets a list of all scheduled jobs.
         * @return A list of all scheduled jobs.
         */
        public List<ScheduledJob> getScheduledJobList() {
            return scheduledJobBhv.selectList(cb -> {
                cb.query().addOrderBy_SortOrder_Asc();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsThumbnailQueueCQ.java

    import org.opensearch.index.query.RangeQueryBuilder;
    import org.opensearch.index.query.RegexpQueryBuilder;
    import org.opensearch.index.query.SpanTermQueryBuilder;
    import org.opensearch.index.query.TermQueryBuilder;
    import org.opensearch.index.query.TermsQueryBuilder;
    import org.opensearch.index.query.WildcardQueryBuilder;
    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 51.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsKeyMatchCB.java

        // ===================================================================================
        //                                                                               Query
        //                                                                               =====
        public BsKeyMatchCQ query() {
            assertQueryPurpose();
            return doGetConditionQuery();
        }
    
        protected BsKeyMatchCQ doGetConditionQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRoleTypeCB.java

        // ===================================================================================
        //                                                                               Query
        //                                                                               =====
        public BsRoleTypeCQ query() {
            assertQueryPurpose();
            return doGetConditionQuery();
        }
    
        protected BsRoleTypeCQ doGetConditionQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

        }
    
        /**
         * Retrieves related content for a given search query.
         * First checks for exact term matches, then evaluates regex patterns.
         * For regex matches, the query placeholder is replaced with the actual query.
         *
         * @param query the search query to find related content for
         * @return array of related content strings, or empty array if no matches found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

            String query = "*";
            int allRecordCount = 1000;
            int pageSize = 10;
            try (RankFusionProcessor rankFusionProcessor = new RankFusionProcessor()) {
                rankFusionProcessor.setSeacher(new TestMainSearcher(allRecordCount));
                rankFusionProcessor.init();
    
                if (rankFusionProcessor.search(query, new TestSearchRequestParams(0, pageSize, 0),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * 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
         */
    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/WebConfigService.java

                cb.query().setUrls_Wildcard(wrapQuery(webConfigPager.urls));
            }
            if (StringUtil.isNotBlank(webConfigPager.description)) {
                if (webConfigPager.description.startsWith("*")) {
                    cb.query().setDescription_Wildcard(webConfigPager.description);
                } else if (webConfigPager.description.endsWith("*")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/it/admin/KeyMatchTests.java

            requestBody.put("query", "query" + id);
            requestBody.put("max_size", Integer.valueOf(id).toString());
            requestBody.put("boost", 100);
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("query", "new_query");
            return updateMap;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top