Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 509 for query1 (0.03 sec)

  1. src/main/java/org/codelibs/fess/util/FacetResponse.java

    /**
     * Response object for faceted search results containing query counts and field facets.
     * This class processes OpenSearch aggregations to provide structured facet information
     * for search result filtering and navigation.
     */
    public class FacetResponse {
        /**
         * Map containing query facet counts, where keys are decoded query strings
         * and values are document counts for each query.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     * list is a single empty string: `[""]`.
     *
     * ### Query
     *
     * The query is optional: it can be null, empty, or non-empty. For many HTTP URLs the query string
     * is subdivided into a collection of name-value parameters. This class offers methods to set the
     * query as the single string, or as individual name-value parameters. With name-value parameters
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsElevateWordToLabelCQ.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
    - 23.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java

     */
    package org.codelibs.fess.query;
    
    import java.io.IOException;
    import java.util.Objects;
    
    import org.apache.lucene.search.Query;
    import org.opensearch.core.common.io.stream.StreamOutput;
    import org.opensearch.core.xcontent.XContentBuilder;
    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.DisMaxQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(SAMBA_HELPER);
        }
    
        /**
         * Gets the query helper component.
         * @return The query helper.
         */
        public static QueryHelper getQueryHelper() {
            return getComponent(QUERY_HELPER);
        }
    
        /**
         * Gets the query field configuration.
         * @return The query field config.
         */
        public static QueryFieldConfig getQueryFieldConfig() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.index.query.DisMaxQueryBuilder;
    import org.opensearch.index.query.FuzzyQueryBuilder;
    import org.opensearch.index.query.QueryBuilder;
    
    public class FuzzyQueryCommandTest extends QueryTestBase {
    
        private FuzzyQueryCommand fuzzyQueryCommand;
    
        @Override
        protected void setUpChild() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

     *
     * This class encapsulates all the information returned from a search query,
     * including the list of matching documents, total record count, query execution
     * time, facet information, and metadata about the search results.
     */
    public class SearchResult {
    
        /** The list of documents returned by the search query. */
        protected final List<Map<String, Object>> documentList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/index.jsp

    					</div>
    					<fieldset>
    						<legend><la:message key="labels.search" /></legend>
    						<div class="clearfix">
    							<div class="mx-auto col-10 col-sm-8 col-md-8 col-lg-6">
    								<la:text styleClass="query form-control"
    									property="q" size="50" maxlength="1000" styleId="contentQuery"
    									autocomplete="off" />
    							</div>
    						</div>
    						<c:if test="${!empty popularWords}">
    							<div class="clearfix">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 7K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

         */
        public List<DuplicateHost> getDuplicateHostList() {
    
            return duplicateHostBhv.selectList(cb -> {
                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().addOrderBy_RegularName_Asc();
                cb.query().addOrderBy_DuplicateHostName_Asc();
                cb.fetchFirst(fessConfig.getPageDuplicateHostMaxFetchSizeAsInteger());
            });
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

            final String servletPath = "/api/v1/search?query=test&page=1";
            webApiRequest = new WebApiRequest(mockRequest, servletPath);
            assertNotNull(webApiRequest);
            assertEquals(servletPath, webApiRequest.servletPath);
        }
    
        // Test getServletPath method without SAStruts.method in query string
        public void test_getServletPath_withoutSAStrutsMethod_returnsCustomPath() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
Back to top