- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for args (0.01 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
} protected boolean bucketExists(final String name) { try { final BucketExistsArgs args = BucketExistsArgs.builder().bucket(name).build(); return minioClient.bucketExists(args); } catch (final Exception e) { throw new CrawlingAccessException("Could not access bucket:" + name, e); } }
Registered: 2024-11-10 03:50 - Last Modified: 2024-02-22 01:47 - 13.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
throw new IOException("Access is not ready."); } try { final GetObjectArgs args = GetObjectArgs.builder().bucket(bucketName).object(objectName).build(); return minioClient.getObject(args); } catch (InvalidKeyException | ErrorResponseException | IllegalArgumentException | InsufficientDataException | InternalException
Registered: 2024-11-10 03:50 - Last Modified: 2024-02-22 01:36 - 6.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/SmbjEngine.java
@Override public String generateType1Msg(final String arg0, final String arg1) throws NTLMEngineException { // TODO Auto-generated method stub return null; } @Override public String generateType3Msg(final String arg0, final String arg1, final String arg2, final String arg3, final String arg4) throws NTLMEngineException { // TODO Auto-generated method stub
Registered: 2024-11-10 03:50 - Last Modified: 2024-02-22 01:36 - 1.3K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
]</arg> <arg>pdfExtractor</arg> </postConstruct> <postConstruct name="addExtractor"> <arg>[ "application/x-lha", "application/x-lharc" ]</arg> <arg>lhaExtractor</arg> </postConstruct> <postConstruct name="addExtractor"> <arg>[ "message/rfc822" ]</arg> <arg>emlExtractor</arg> </postConstruct> <postConstruct name="addExtractor"> <arg>[
Registered: 2024-11-10 03:50 - Last Modified: 2020-08-01 21:40 - 49K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/client.xml
<postConstruct name="addClient"> <arg>["http:.*", "https:.*"]</arg> <arg>httpClient</arg> </postConstruct> <postConstruct name="addClient"> <arg>"file:.*"</arg> <arg>fsClient</arg> </postConstruct> <postConstruct name="addClient"> <arg>"smb:.*"</arg> <arg>smbClient</arg> </postConstruct> <postConstruct name="addClient"> <arg>"smb1:.*"</arg> <arg>smb1Client</arg> </postConstruct>
Registered: 2024-11-10 03:50 - Last Modified: 2023-08-08 12:54 - 2.8K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/rule.xml
<component name="ruleManager" class="org.codelibs.fess.crawler.rule.impl.RuleManagerImpl" instance="prototype"> <postConstruct name="addRule"> <arg>sitemapsRule</arg> </postConstruct> <postConstruct name="addRule"> <arg>fileRule</arg> </postConstruct> </component> <component name="sitemapsRule" class="org.codelibs.fess.crawler.rule.impl.SitemapsRule">
Registered: 2024-11-10 03:50 - Last Modified: 2015-10-11 02:16 - 1.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/resources/crawler_opensearch.xml
<arg>crawlerConfig</arg> </component> <component name="dataService" class="org.codelibs.fess.crawler.service.impl.OpenSearchDataService"> <arg>crawlerConfig</arg> </component> <component name="urlFilterService" class="org.codelibs.fess.crawler.service.impl.OpenSearchUrlFilterService"> <arg>crawlerConfig</arg> </component>
Registered: 2024-11-10 03:50 - Last Modified: 2024-11-07 04:44 - 2.2K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/encoding.xml
<components namespace="fessCrawler"> <include path="crawler/container.xml" /> <component name="encodingHelper" class="org.codelibs.fess.crawler.helper.EncodingHelper"> <postConstruct name="addEncodingMapping"> <arg>"unicode"</arg> <arg>"UTF-16LE"</arg> </postConstruct> </component>
Registered: 2024-11-10 03:50 - Last Modified: 2017-06-16 13:35 - 454 bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/transformer_basic.xml
<arg>"//AREA"</arg> <arg>"href"</arg> </postConstruct> <postConstruct name="put"> <arg>"//FRAME"</arg> <arg>"src"</arg> </postConstruct> <postConstruct name="put"> <arg>"//IFRAME"</arg> <arg>"src"</arg> </postConstruct> <postConstruct name="put"> <arg>"//IMG"</arg> <arg>"src"</arg> </postConstruct> <postConstruct name="put"> <arg>"//LINK"</arg> <arg>"href"</arg>
Registered: 2024-11-10 03:50 - Last Modified: 2018-09-30 21:21 - 3.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
} if (getInitParameter(IGNORE_SSL_CERTIFICATE_PROPERTY, false, Boolean.class)) { try { final SSLContext sslContext = new SSLContextBuilder().loadTrustMaterial(null, (arg0, arg1) -> true).build(); httpClientBuilder.setSSLContext(sslContext); return new SSLConnectionSocketFactory(sslContext, NoopHostnameVerifier.INSTANCE); } catch (final Exception e) {
Registered: 2024-11-10 03:50 - Last Modified: 2024-05-09 09:29 - 41K bytes - Viewed (0)