- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 273 for catching (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
protected int connectionCheckInterval = 5; // sec /** Idle connection timeout in milliseconds */ protected long idleConnectionTimeout = 60 * 1000L; // 1min /** Pattern for matching HTTP redirect status codes */ protected Pattern redirectHttpStatusPattern = Pattern.compile("[3][0-9][0-9]"); /** Whether to use robots.txt disallow rules */ protected boolean useRobotsTxtDisallows = true;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 53.7K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
// Clean release releaseHandle(handle); break; } } } ``` ## 10. Performance Considerations ### 10.1 Handle Caching Strategy ```java public class HandleCache { private final int maxHandles = 1000; private final LinkedHashMap<String, HandleInfo> lruCache; public HandleCache() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.35.md
- Implemented opportunistic batching (KEP-5598) to optimize scheduling for pods with identical scheduling requirements. ([#135231](https://github.com/kubernetes/kubernetes/pull/135231), [@bwsalmon](https://github.com/bwsalmon)) [SIG Node, Scheduling, Storage and Testing]
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Wed Dec 17 13:01:55 UTC 2025 - 228.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
final RuleManager ruleManager = SingletonLaContainer.getComponent(RuleManager.class); final Rule rule = ruleManager.getRule(responseData); if (rule == null) { logger.warn("No matching url rule for url='{}'", url); } else { responseData.setRuleId(rule.getRuleId()); final ResponseProcessor responseProcessor = rule.getResponseProcessor();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/HostnameVerifierTest.kt
assertThat(verifier.verify("a.b.foo.com", session)).isFalse() } @Test fun verifyWilcardCnOnTld() { // It's the CA's responsibility to not issue broad-matching certificates! // CN=*.co.jp val session = session( """ -----BEGIN CERTIFICATE----- MIIERjCCAy6gAwIBAgIJAIz+EYMBU6aVMA0GCSqGSIb3DQEBBQUAMIGiMQswCQYD
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 40.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
if (parameters.length != 1) { return false; } if (!parameters[0].equals(Object.class)) { return false; } return true; } /** Strategy for exception type matching used by {@link NullPointerTester}. */ private enum ExceptionTypePolicy { /** * Exceptions should be {@link NullPointerException} or {@link UnsupportedOperationException}. */ NPE_OR_UOE() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
* pagination metadata including total count and page number list. * * @param crawlingInfoPager the pager object containing search criteria and pagination settings * @return a list of CrawlingInfo entities matching the criteria */ public List<CrawlingInfo> getCrawlingInfoList(final CrawlingInfoPager crawlingInfoPager) { final PagingResultBean<CrawlingInfo> crawlingInfoList = crawlingInfoBhv.selectPage(cb -> {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
// is usable to java7. public void testToImmutableSortedSet_customComparator_java7() { // Note that a Collector should generally enforce consistent comparator between builders. // So no tests for non-matching comparator shenanigans. ImmutableSortedSet.Builder<String> zis = ImmutableSortedSet.<String>orderedBy(STRING_LENGTH).add("ccc", "bb", "ccc"); ImmutableSortedSet.Builder<String> zat =
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 45.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
final List<String> groupIdsForParentLookup, final String url) { if (logger.isDebugEnabled()) { logger.debug("[processDirectMemberOf] Fetching direct memberships from URL: {}", url); } try (CurlResponse response = Curl.get(url) .header("Authorization", "Bearer " + user.getAuthenticationResult().accessToken())
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
([docs](http://kubernetes.io/docs/user-guide/federation/federated-ingress.md)) ([kubernetes/features#82](https://github.com/kubernetes/enhancements/issues/82)) - [beta] `Federated Replica Sets` create and maintain matching `Replica Set`s in some or all clusters in a federation, with the desired replica count distributed equally or according to specified per-cluster weights.Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0)