- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 643 for Research (0.18 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
import org.lastaflute.web.util.LaRequestUtil; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.action.search.SearchResponse; import org.opensearch.common.document.DocumentField; import org.opensearch.search.SearchHit; import org.opensearch.search.SearchHits; import org.opensearch.search.aggregations.Aggregations; import org.opensearch.search.fetch.subphase.highlight.HighlightField; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/EditForm.java
/** * The edit form for Search List. * This form extends CreateForm and adds fields necessary for editing existing search list entries. */ public class EditForm extends CreateForm { /** Unique identifier for the search list entry */ public String id; /** Sequence number for ordering search list entries */ @ValidateTypeFailure public Long seqNo;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0)