- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for HcHttpClient (0.06 sec)
-
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java
public static final String ROBOTS_TXT_ENABLED = HcHttpClient.ROBOTS_TXT_ENABLED_PROPERTY; public static final String PROXY_PASSWORD = "proxyPassword"; public static final String PROXY_USERNAME = "proxyUsername"; public static final String PROXY_PORT = HcHttpClient.PROXY_PORT_PROPERTY; public static final String PROXY_HOST = HcHttpClient.PROXY_HOST_PROPERTY;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 5.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java
} finally { server.stop(); } } public void test_doGet_accessTimeoutTarget() { HcHttpClient client = new HcHttpClient() { @Override protected ResponseData processHttpMethod(final String url, final HttpUriRequest httpRequest) { try { Thread.sleep(10000);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 09 09:28:25 UTC 2024 - 8.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryTest.java
assertTrue(((FaultTolerantClient) client).getCrawlerClient() instanceof HcHttpClient); url = "https://hoge.com/"; client = clientFactory.getClient(url); assertNotNull(client); assertTrue(client instanceof FaultTolerantClient); assertTrue(((FaultTolerantClient) client).getCrawlerClient() instanceof HcHttpClient); url = "file:/home/hoge"; client = clientFactory.getClient(url);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java
import org.codelibs.fess.app.service.WebAuthenticationService; import org.codelibs.fess.crawler.client.CrawlerClientFactory; import org.codelibs.fess.crawler.client.http.Authentication; import org.codelibs.fess.crawler.client.http.HcHttpClient; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.mylasta.direction.FessProp; import org.codelibs.fess.unit.UnitFessTestCase;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 09 09:48:04 UTC 2024 - 7.6K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/client.xml
<include path="crawler/robotstxt.xml" /> <include path="crawler/contentlength.xml" /> <include path="crawler/mimetype.xml" /> <component name="internalHttpClient" class="org.codelibs.fess.crawler.client.http.HcHttpClient" instance="prototype"> <property name="connectionTimeout">15000</property> <property name="soTimeout">30000</property> </component> <component name="httpClient"
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Tue Aug 08 12:54:47 UTC 2023 - 2.8K bytes - Viewed (0)