- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 207 for catching (0.03 sec)
-
src/main/java/org/codelibs/fess/job/UpdateLabelJob.java
import org.opensearch.script.Script; /** * Job class for updating label information in the search index. * This job processes documents and updates their label fields based on URL pattern matching. */ public class UpdateLabelJob { private static final Logger logger = LogManager.getLogger(UpdateLabelJob.class); /** * Query builder for filtering documents to be processed. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java
} /** * Gets the appropriate web API manager for the given request. * * @param request The HTTP servlet request * @return The matching web API manager, or null if no match found */ public WebApiManager get(final HttpServletRequest request) { for (final WebApiManager webApiManager : webApiManagers) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
* @param urlList the list of URLs to check against the user's favorites * @return a list of URLs from the input list that are in the user's favorites, or an empty list if the user is not found or has no matching favorites */ public List<String> getUrlList(final String userCode, final List<String> urlList) { if (urlList.isEmpty()) { return urlList; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
* Retrieves a paginated list of request headers based on the provided pager criteria. * * @param requestHeaderPager the pager containing pagination and search criteria * @return a list of request headers matching the specified criteria */ public List<RequestHeader> getRequestHeaderList(final ReqHeaderPager requestHeaderPager) { final PagingResultBean<RequestHeader> requestHeaderList = requestHeaderBhv.selectPage(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
return StringUtil.isBlank(s) ? StringUtil.EMPTY : "/" + s; } /** * Gets the virtual host key from the current request. * The key is determined by matching HTTP headers against configured virtual hosts. * * @return The virtual host key, or empty string if no match found */ public String getVirtualHostKey() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
CONTRIBUTING.md
squash all pull requests on merge. Gradle Setup ------------ ``` $ cat local.properties sdk.dir=PATH_TO_ANDROID_HOME/sdk org.gradle.caching=true ``` Running Android Tests --------------------- $ ANDROID_SDK_ROOT=PATH_TO_ANDROID_HOME/sdk ./gradlew :android-test:connectedCheck -PandroidBuild=true Committer's Guides ------------------
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Feb 14 08:26:50 UTC 2023 - 2K bytes - Viewed (0) -
docs/contribute/contributing.md
squash all pull requests on merge. Gradle Setup ------------ ``` $ cat local.properties sdk.dir=PATH_TO_ANDROID_HOME/sdk org.gradle.caching=true ``` Running Android Tests --------------------- $ ANDROID_SDK_ROOT=PATH_TO_ANDROID_HOME/sdk ./gradlew :android-test:connectedCheck -PandroidBuild=true Committer's Guides ------------------
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Feb 14 08:26:50 UTC 2023 - 2K bytes - Viewed (0) -
docs/changelogs/changelog_1x.md
* Fix: Support empty SPDY header values. ## Version 1.2.0 _2013-08-11_ * New APIs on OkHttpClient to set default timeouts for connect and read. * Fix bug when caching SPDY responses. * Fix a bug with SPDY plus half-closed streams. (thanks kwuollett) * Fix a bug in `Content-Length` reporting for gzipped streams in the Apache HTTP client adapter. (thanks kwuollett)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
* * @param relatedQueryPager the pager containing pagination parameters and search conditions * @return a list of RelatedQuery entities matching the search criteria */ public List<RelatedQuery> getRelatedQueryList(final RelatedQueryPager relatedQueryPager) { final PagingResultBean<RelatedQuery> relatedQueryList = relatedQueryBhv.selectPage(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0)