Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setConnectionManager (0.07 seconds)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

                            true);
    
            final CloseableHttpClient closeableHttpClient = httpClientBuilder.setDnsResolver(dnsResolver)
                    .setConnectionManager(clientConnectionManager)
                    .setDefaultRequestConfig(requestConfigBuilder.build())
                    .build();
            if (!httpClientPropertyMap.isEmpty()) {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Fri Jan 09 23:46:52 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                    .setResponseTimeout(Timeout.ofMilliseconds(timeout))
                    .build();
            httpClient = HttpClients.custom()
                    .setConnectionManager(PoolingHttpClientConnectionManagerBuilder.create()
                            .setDefaultConnectionConfig(ConnectionConfig.custom().setConnectTimeout(Timeout.ofMilliseconds(timeout)).build())
                            .build())
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java

                            true);
    
            final CloseableHttpClient closeableHttpClient = httpClientBuilder.setConnectionManager(clientConnectionManager)
                    .setDefaultRequestConfig(requestConfigBuilder.build())
                    .build();
            if (!httpClientPropertyMap.isEmpty()) {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sat Jan 31 12:23:29 GMT 2026
    - 62.2K bytes
    - Click Count (0)
Back to Top