- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 643 for Research (0.05 sec)
-
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
} /** * Executes a search operation with the specified parameters. * This method must be implemented by concrete searcher classes. * * @param query the search query string * @param params the search request parameters including pagination, filters, etc. * @param userBean the optional user bean for access control and personalization * @return the search result containing matched documents and metadata
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
}); } /** * Builds search conditions for failure URL queries based on pager criteria. * * @param failureUrlPager the pager containing search criteria * @param cb the condition builder to configure with search conditions */ private void buildSearchCondition(final FailureUrlPager failureUrlPager, final FailureUrlCB cb) { // search if (StringUtil.isNotBlank(failureUrlPager.url)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
*/ package org.codelibs.fess.query; import org.codelibs.fess.mylasta.direction.FessConfig; import org.apache.lucene.index.Term; import org.apache.lucene.search.Query; import org.apache.lucene.search.TermQuery; import org.apache.lucene.search.WildcardQuery; import org.codelibs.fess.Constants; import org.codelibs.fess.entity.QueryContext; import org.codelibs.fess.exception.InvalidQueryException;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Search log access type for JSON API. */ public static final String SEARCH_LOG_ACCESS_TYPE_JSON = "json"; /** Search log access type for GSA API. */ public static final String SEARCH_LOG_ACCESS_TYPE_GSA = "gsa"; /** Search log access type for web interface. */ public static final String SEARCH_LOG_ACCESS_TYPE_WEB = "web"; /** Search log access type for admin interface. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsPagingResultBean.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.user.allcommon; import org.apache.lucene.search.TotalHits; import org.dbflute.cbean.result.PagingResultBean; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.search.aggregations.Aggregations; /** * @param <ENTITY> The type of entity. * @author ESFlute (using FreeGen) */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsSearchLogCA.java
import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder; import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder; import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder; import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 115.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
}); } /** * Sets up the search conditions for group list queries based on pager criteria. * Configures the condition bean with ID filtering and ordering by name. * * @param cb the condition bean for building the query * @param groupPager the pager containing search and filter criteria */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
}); } /** * Searches job logs based on the form criteria. * * @param form the search form * @return HTML response for the search results */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse search(final SearchForm form) { saveToken(); copyBeanToBean(form, jobLogPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/SearchForm.java
*/ package org.codelibs.fess.app.web.admin.keymatch; /** * The search form for Key Match. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The search term field for key match configuration. */ public String term; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
if (logger.isDebugEnabled()) { logger.debug("Failed to process a search request.", e); } writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, e); } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Failed to process a search request.", e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0)