Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 684 for noarch (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/sereq/UploadForm.java

    /**
     * Form for uploading search request files to the Fess search engine.
     * This form is used in the admin interface to upload search request configuration files
     * that define search behaviors and request handling.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing the search request configurations to be uploaded.
         * This file should contain search request definitions and configurations.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        protected boolean partialResults;
    
        /** The actual search query executed against the search engine. */
        protected String searchQuery;
    
        /** Time taken to execute the search query in milliseconds. */
        protected long queryTime;
    
        /** Timestamp when the search request was made. */
        protected long requestedTime;
    
        /** Unique identifier for this search query session. */
        protected String queryId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Base class for search request body objects in admin API.
     * Provides common pagination parameters for search operations.
     */
    public class BaseSearchBody {
    
        /** The page size for search results. */
        public Integer size = ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
    
        /** The page number for search results. */
        public Integer page = Constants.DEFAULT_ADMIN_PAGE_NUMBER;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

         * including CRUD operations and search functionality.
         */
        public DuplicateHostService() {
            super();
        }
    
        /**
         * Retrieves a paginated list of duplicate host configurations based on search criteria.
         *
         * <p>This method performs a paginated search through all duplicate host configurations,
         * applying any search filters specified in the pager. The results are sorted
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/AggregateLogJob.java

    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.helper.SearchLogHelper;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Job for aggregating and storing search logs.
     * This job processes search logs and stores them in the search log repository.
     */
    public class AggregateLogJob {
    
        private static final Logger logger = LogManager.getLogger(AggregateLogJob.class);
    
        /**
         * Default constructor.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.MaxAggregationBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        /** Array of fields to be included in standard search response */
        protected String[] responseFields;
    
        /** Array of fields to be included in scroll search response */
        protected String[] scrollResponseFields;
    
        /** Array of fields to be included in cache search response */
        protected String[] cacheResponseFields;
    
        /** Array of fields that can be highlighted in search results */
        protected String[] highlightedFields;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /**
         * Default label value to use when no specific label is selected.
         * This affects which documents are included in search results by default.
         */
        @Size(max = 1000)
        public String defaultLabelValue;
    
        /**
         * Default sort order for search results.
         * Defines how search results are ordered when no specific sort is requested.
         */
        @Size(max = 1000)
        public String defaultSortValue;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        private int currentPageNumber;
    
        /** Search parameter: elevate word ID */
        public String id;
    
        /** Search parameter: suggest word */
        public String suggestWord;
    
        /** Search parameter: boost value */
        public String boost;
    
        /** Search parameter: created by user */
        public String createdBy;
    
        /** Search parameter: creation time */
        public String createdTime;
    
    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/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    
    import org.apache.lucene.search.TotalHits.Relation;
    import org.codelibs.fess.util.FacetResponse;
    
    /**
     * Represents the result of a search operation in the rank fusion system.
     *
     * This class encapsulates all the information returned from a search query,
     * including the list of matching documents, total record count, query execution
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top