Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 643 for Research (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

        /** Number of records to display per page. */
        private int pageSize;
    
        /** Current page number being displayed. */
        private int currentPageNumber;
    
        /** Group ID for search filtering. */
        public String id;
    
        /** Group name for search filtering. */
        public String name;
    
        /** Version number for optimistic locking. */
        public String versionNo;
    
        /**
         * Default constructor for GroupPager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

        /**
         * The query ID associated with the search request.
         */
        @Required
        public String queryId;
    
        /**
         * The search query string for error page display.
         */
        public String q;
    
        /**
         * The number of search results per page for error page display.
         */
        public String num;
    
        /**
         * The sort criteria for search results for error page display.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        /**
         * Stores the document IDs associated with a search query for tracking purposes.
         * This method caches the document IDs returned for a specific query to enable click tracking and analytics.
         *
         * @param queryId the unique identifier for the search query
         * @param documentItems the list of document maps containing search results
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        private int currentPageNumber;
    
        /** Search criteria: job ID */
        public String id;
    
        /** Search criteria: job name */
        public String jobName;
    
        /** Search criteria: job status */
        public String jobStatus;
    
        /** Search criteria: target */
        public String target;
    
        /** Search criteria: script type */
        public String scriptType;
    
        /** Search criteria: start time */
    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/app/web/api/ApiResult.java

            }
    
            /**
             * The list of documents returned in the search results.
             */
            protected List<Map<String, Object>> docs;
            /**
             * Parameters for highlighting search results.
             */
            protected String highlightParams;
            /**
             * The execution time of the search query.
             */
            protected String execTime;
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

     */
    package org.codelibs.fess.query;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.apache.lucene.index.Term;
    import org.apache.lucene.search.FuzzyQuery;
    import org.apache.lucene.search.Query;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.entity.QueryContext;
    import org.codelibs.fess.exception.InvalidQueryException;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsWebAuthenticationCA.java

    import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 76.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/ArrayUtil.java

         * @param obj
         *            the object to search for
         * @return the index of the first occurrence of the object in the array
         */
        public static <T> int indexOf(final T[] array, final T obj) {
            return indexOf(array, obj, 0);
        }
    
        /**
         * Returns the index of the first occurrence of the specified object in the array, starting the search at the specified index.
         *
         * @param <T>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 41.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Search for data configs.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
            copyBeanToBean(form, dataConfigPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/searchResults.jsp

    					<la:link styleClass="page-link"
    						href="/search/move?q=${f:u(q)}&pn=${f:u(pageNumber)}&num=${f:u(pageSize)}&sdh=${f:u(fe:sdh(sdh))}${fe:pagingQuery(null)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(pageNumber)}</la:link>
    				</li>
    			</c:forEach>
    			<c:if test="${existNextPage}">
    				<li class="page-item"><la:link styleClass="page-link" aria-label="Next"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
Back to top