- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 231 for configured (0.04 sec)
-
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 (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
if (settings.getIdpSingleLogoutServiceUrl() == null) { if (logger.isDebugEnabled()) { logger.debug("IdP single logout service URL is not configured, skipping SLO for user: {}", samlUser); } return null; } final Auth auth = new Auth(settings, request, response);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* * This method implements lazy initialization with synchronization to ensure * the authenticator is only created once. It configures the authenticator * with the appropriate SPNEGO settings and marks initialization as complete. * * @return The configured SPNEGO authenticator instance * @throws SsoLoginException if SPNEGO initialization fails */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (0) -
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) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
protected LoadingCache<String, StatsObject> statsCache; /** * Initializes the crawler statistics helper. * Sets up the statistics logger and creates the cache for storing * statistics objects with the configured size and expiration settings. */ @PostConstruct public void init() { statsLogger = LogManager.getLogger(loggerName); statsCache = CacheBuilder.newBuilder()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
logger.warn("Failed to initiaize TikaExtractor.", e); } } /** * Processes and normalizes a document title. * Applies text normalization using configured space characters and returns * a clean title suitable for indexing. * * @param responseData the response data from crawling (not currently used) * @param title the raw title text to process
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
super.storeChildUrl(url, parentUrl, weight, depth); } } /** * Retrieves the appropriate crawler client for the given URL based on configured rules. * This method uses client rules to determine which specific client implementation * should be used for crawling the URL, falling back to the default client if no * specific rule matches. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt
val location = userResponse.header("Location") ?: return null // Don't follow redirects to unsupported protocols. val url = userResponse.request.url.resolve(location) ?: return null // If configured, don't follow redirects between SSL and non-SSL. val sameScheme = url.scheme == userResponse.request.url.scheme if (!sameScheme && !client.followSslRedirects) return null
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
import org.codelibs.curl.Curl.Method; import org.codelibs.curl.io.ContentCache; import org.codelibs.curl.io.ContentOutputStream; /** * The CurlRequest class represents an HTTP request that can be configured and executed. * It supports various HTTP methods, request parameters, headers, body content, and more. */ public class CurlRequest { /** * The GZIP compression type. */
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
/** * CrawlJob is responsible for executing the crawling process in Fess. * This job launches a separate crawler process that can crawl web sites, file systems, * and data sources based on the configured crawling settings. * * <p>The job supports selective crawling by specifying configuration IDs for different * types of crawlers (web, file, data). It manages the crawler process lifecycle,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0)