- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 557 for configured (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java
logger.debug("Failed to retrieval a cache.", e); } return new XPathAPI(); } } /** * Creates and configures a DOM parser with the specified features and properties. * * @return a configured DOM parser instance * @throws CrawlerSystemException if the parser configuration is invalid */ protected DOMParser getDomParser() {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt
var result = pattern.hashCode() result = 31 * result + hashAlgorithm.hashCode() result = 31 * result + hash.hashCode() return result } } /** Builds a configured certificate pinner. */ class Builder { val pins = mutableListOf<Pin>() /** * Pins certificates for `pattern`. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.1K bytes - Viewed (1) -
src/main/java/jcifs/util/SecureKeyManager.java
rotationTask = rotationScheduler.scheduleWithFixedDelay(this::rotateExpiredKeys, intervalMillis, intervalMillis, java.util.concurrent.TimeUnit.MILLISECONDS); log.info("Key rotation configured with interval: {} ms", intervalMillis); } } /** * Rotate a specific session key * * @param sessionId the session ID * @return the new key version number
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java
logger.warn("Failed to parse the content by {}", path, e); return StringUtil.EMPTY_STRINGS; } } /** * Creates and configures a DOM parser for parsing HTML content. * * @return a configured DOMParser instance * @throws CrawlerSystemException if the parser configuration is invalid */ protected DOMParser getDomParser() {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Dispatcher.kt
/** * Policy on when async requests are executed. * * Each dispatcher uses an [ExecutorService] to run calls internally. If you supply your own * executor, it should be able to run [the configured maximum][maxRequests] number of calls * concurrently. */ class Dispatcher() { /** * The maximum number of requests to execute concurrently. Above this requests queue in memory,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 8.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
* <li>Execution: Starts the crawler threads and waits for them to complete.</li> * <li>Cleanup: Deletes the crawled data and clears the URL filter.</li> * </ol> * * <p>The crawler can be configured with various parameters, such as the number of threads, * the maximum depth of crawling, and URL filters. * * <p>Example usage: * <pre> * Crawler crawler = new Crawler();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
docs/en/docs/deployment/https.md
It would probably all start by you **acquiring** some **domain name**. Then, you would configure it in a DNS server (possibly your same cloud provider). You would probably get a cloud server (a virtual machine) or something similar, and it would have a <abbr title="That doesn't change">fixed</abbr> **public IP address**. In the DNS server(s) you would configure a record (an "`A record`") to point **your domain** to the public **IP address of your server**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 19:34:08 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
newValue = newValue.replace(element, replacement); } return newValue; } /** * Builds the complete query string from the configured parameters. * Combines base query, extra queries, field filters, and sort field into a single query string. * * @return the complete formatted query string */ public String build() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
// fired. To avoid this we substitute a placeholder service. logger .get() .log( Level.WARNING, "ServiceManager configured with no services. Is your application configured" + " properly?", new EmptyServiceManagerWarning()); copy = ImmutableList.<Service>of(new NoOpService()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 33.2K bytes - Viewed (1) -
README.md
first connect fails. This is necessary for IPv4+IPv6 and services hosted in redundant data centers. OkHttp supports modern TLS features (TLS 1.3, ALPN, certificate pinning). It can be configured to fall back for broad connectivity. Using OkHttp is easy. Its request/response API is designed with fluent builders and immutability. It supports both synchronous blocking calls and async calls with callbacks.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.8K bytes - Viewed (0)