Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for connectionTimeout (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		instance="prototype">
    		<property name="connectionTimeout">15000</property>
    		<property name="soTimeout">30000</property>
    	</component>
    
    	<!-- HC4 (Alternative - for backward compatibility) -->
    	<component name="internalHc4HttpClient" class="org.codelibs.fess.crawler.client.http.Hc4HttpClient"
    		instance="prototype">
    		<property name="connectionTimeout">15000</property>
    		<property name="soTimeout">30000</property>
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 04:17:06 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/pager/FailureUrlPagerTest.java

            failureUrlPager.id = "testId";
            failureUrlPager.url = "http://test.example.com";
            failureUrlPager.threadName = "crawler-1";
            failureUrlPager.errorCount = "5";
            failureUrlPager.errorName = "ConnectionTimeout";
            failureUrlPager.setAllRecordCount(100);
            failureUrlPager.setAllPageCount(10);
            failureUrlPager.setExistPrePage(true);
            failureUrlPager.setExistNextPage(true);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

            }
        }
    
        /**
         * Sets the connection timeout in milliseconds.
         *
         * @param connectionTimeout The connection timeout
         */
        public void setConnectionTimeout(final Integer connectionTimeout) {
            this.connectionTimeout = connectionTimeout;
        }
    
        /**
         * Sets the maximum total number of connections.
         *
    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)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

     *
     * @author shinsuke
     */
    public abstract class HcHttpClient extends AbstractCrawlerClient {
    
        /** Property name for connection timeout setting */
        public static final String CONNECTION_TIMEOUT_PROPERTY = "connectionTimeout";
    
        /** Property name for socket timeout setting */
        public static final String SO_TIMEOUT_PROPERTY = "soTimeout";
    
        /** Property name for proxy host setting */
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 04:17:06 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java

            }
        }
    
        /**
         * Sets the connection timeout in milliseconds.
         *
         * @param connectionTimeout The connection timeout
         */
        public void setConnectionTimeout(final Integer connectionTimeout) {
            this.connectionTimeout = connectionTimeout;
        }
    
        /**
         * Sets the maximum total number of connections.
         *
    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)
  6. CLAUDE.md

    HcHttpClient (abstract base class)
        ├── Hc4HttpClient
        └── Hc5HttpClient
    ```
    
    Switch via system property: `-Dfess.crawler.http.client=hc4` or `hc5` (default)
    
    **Key Properties**: `connectionTimeout`, `soTimeout`, `proxyHost`, `proxyPort`, `userAgent`, `robotsTxtEnabled`, `ignoreSslCertificate`, `maxTotalConnection`, `defaultMaxConnectionPerRoute`
    
    ### CrawlerClientFactory
    
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Mar 12 03:39:20 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

        // Confirm that the connection was reused.
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(0)
        assertThat(server.takeRequest().exchangeIndex).isEqualTo(1)
      }
    
      @Test
      fun connectionTimeout() {
        server.enqueue(
          MockResponse
            .Builder()
            .body("A")
            .bodyDelay(1, TimeUnit.SECONDS)
            .build(),
        )
        val client1 =
          client
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 67.5K bytes
    - Click Count (0)
Back to Top