Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 429 for quer (0.08 sec)

  1. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

                cb.query().setContent_Wildcard(wrapQuery(relatedContentPager.content));
            }
            // TODO Long, Integer, String supported only.
    
            // setup condition
            cb.query().addOrderBy_Term_Asc();
            cb.query().addOrderBy_CreatedTime_Asc();
    
            // search
    
        }
    
        /**
         * Retrieves a list of all available related content entities.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

                cb.query().setUrl_Wildcard(failureUrlPager.url);
            }
    
            if (StringUtil.isNotBlank(failureUrlPager.errorCountMax)) {
                cb.query().setErrorCount_LessEqual(Integer.parseInt(failureUrlPager.errorCountMax));
            }
            if (StringUtil.isNotBlank(failureUrlPager.errorCountMin)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String QUERY_MAX_LENGTH = "query.max.length";
    
        /** The key of the configuration. e.g. 10000 */
        String QUERY_TIMEOUT = "query.timeout";
    
        /** The key of the configuration. e.g. true */
        String QUERY_TIMEOUT_LOGGING = "query.timeout.logging";
    
        /** The key of the configuration. e.g. 10000 */
        String QUERY_TRACK_TOTAL_HITS = "query.track.total.hits";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlJvmTest.kt

      @Test
      fun toJavaNetUrl() {
        val httpUrl = "http://username:password@host/path?query#fragment".toHttpUrl()
        val javaNetUrl = httpUrl.toUrl()
        assertThat(javaNetUrl.toString())
          .isEqualTo("http://username:password@host/path?query#fragment")
      }
    
      @Test
      fun toUri() {
        val httpUrl = "http://username:password@host/path?query#fragment".toHttpUrl()
        val uri = httpUrl.toUri()
        assertThat(uri.toString())
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.common.lucene.search.function.CombineFunction;
    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder;
    import org.opensearch.index.query.functionscore.ScoreFunctionBuilders;
    import org.opensearch.search.sort.SortBuilders;
    
    import jakarta.annotation.PostConstruct;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

        }
    
        // Test query() method
        public void test_query() {
            QueryBuilder queryBuilder = QueryBuilders.matchAllQuery();
            UpdateLabelJob returnedJob = updateLabelJob.query(queryBuilder);
    
            assertSame(updateLabelJob, returnedJob); // Method chaining
            assertEquals(queryBuilder, updateLabelJob.queryBuilder);
        }
    
        // Test query() method with null
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_es.properties

    labels.search_list_configuration=Búsqueda
    labels.search_list_button_delete=Eliminar
    labels.search_list_delete_confirmation=¿Está seguro de que desea eliminarlo?
    labels.search_list_button_delete_all=Eliminar todo con esta consulta
    labels.search_list_delete_all_confirmation=¿Está seguro de que desea eliminar todo con esta consulta?
    labels.search_list_button_cancel=Cancelar
    labels.failure_url_configuration=URL de fallo
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

         *
         * @param query the search query string
         * @param params search request parameters including pagination and filters
         * @param userBean optional user information for personalized search
         * @return list of search result documents with fused ranking scores
         */
        public List<Map<String, Object>> search(final String query, final SearchRequestParams params,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java

     */
    package org.codelibs.fess.query;
    
    import org.apache.lucene.index.Term;
    import org.apache.lucene.search.PhraseQuery;
    import org.apache.lucene.search.Query;
    import org.apache.lucene.search.TermQuery;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.entity.QueryContext;
    import org.codelibs.fess.exception.InvalidQueryException;
    import org.opensearch.index.query.MatchPhraseQueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/FacetInfo.java

            return BucketOrder.count(false);
        }
    
        /**
         * Adds a query facet to the existing query array.
         * If no queries exist, creates a new array with the provided query.
         *
         * @param s the query string to add as a facet
         */
        public void addQuery(final String s) {
            if (query == null) {
                query = new String[] { s };
            } else {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top