- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for HttpHost (0.13 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
final ExtractData data = new ExtractData(); final HttpPost httpPost = new HttpPost(url); final HttpEntity postEntity = MultipartEntityBuilder.create() .setMode(HttpMultipartMode.BROWSER_COMPATIBLE) .setCharset(Charset.forName("UTF-8")) .addBinaryBody("filedata", in) .build(); httpPost.setEntity(postEntity);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
credentialsProvider.setCredentials(authScope, authentication.getCredentials()); if (authScope.getHost() != null && authScheme != null) { final HttpHost targetHost = new HttpHost(authScope.getHost(), authScope.getPort()); authCache.put(targetHost, authScheme); } } } httpClientContext.setAuthCache(authCache);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java
final HttpPost httpPost = new HttpPost(tokenUrl); if (StringUtil.isNotBlank(tokenReqParams)) { final HttpEntity httpEntity = parseRequestParameters(tokenReqParams, null, encoding); httpPost.setEntity(httpEntity); } httpRequest = httpPost; } else {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (1)