Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,153 for Search (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for boost document administration.
     * Extends BaseSearchBody with boost document-specific search parameters.
     */
    public class SearchBody extends BaseSearchBody {
    
        /** The URL expression pattern to search for in boost documents. */
        public String urlExpr;
    
        /** The boost expression to search for in boost documents. */
        public String boostExpr;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/FacetResponse.java

    import java.util.Map;
    
    import org.codelibs.fess.Constants;
    import org.opensearch.search.aggregations.Aggregations;
    import org.opensearch.search.aggregations.bucket.filter.Filter;
    import org.opensearch.search.aggregations.bucket.terms.Terms;
    
    import com.google.common.io.BaseEncoding;
    
    /**
     * Response object for faceted search results containing query counts and field facets.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java

    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading elevate word files to the Fess search engine.
     * Elevate words are terms that should be promoted or given higher ranking in search results.
     * This form is used in the admin interface to upload elevate word configuration files.
     */
    public class UploadForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

    import org.opensearch.action.search.ClearScrollRequest;
    import org.opensearch.action.search.ClearScrollRequestBuilder;
    import org.opensearch.action.search.ClearScrollResponse;
    import org.opensearch.action.search.CreatePitRequest;
    import org.opensearch.action.search.CreatePitResponse;
    import org.opensearch.action.search.DeletePitRequest;
    import org.opensearch.action.search.DeletePitResponse;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/collect/SortedLists.java

              @ParametricNullness E key,
              List<? extends E> list,
              int foundIndex) {
            // Of course, we have to use binary search to find the precise
            // breakpoint...
            int lower = 0;
            int upper = foundIndex;
            // Of course, we have to use binary search to find the precise breakpoint...
            // Everything between lower and upper inclusive compares at <= 0.
            while (lower < upper) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top