- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for HttpPost (0.03 seconds)
-
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);Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 12.2K bytes - Click Count (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 {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 14.3K bytes - Click Count (1) -
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);
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 12:19:14 GMT 2025 - 53.7K bytes - Click Count (0)