- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for getCrawlerWebProtocols (0.18 seconds)
-
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
public class ProtocolHelperTest extends UnitFessTestCase { @Test public void test_add_httpx() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getCrawlerWebProtocols() { return "http,https"; } @Override public String getCrawlerFileProtocols() { return "file,smb"; } });Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 35.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
super.setUp(testInfo); // Setup protocolHelper with test configuration ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getCrawlerWebProtocols() { return "http,https"; } @Override public String getCrawlerFileProtocols() { return "file,smb,smb1,ftp,storage,s3,gcs"; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
super.setUp(testInfo); // Setup protocolHelper with test configuration ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getCrawlerWebProtocols() { return "http,https"; } @Override public String getCrawlerFileProtocols() { return "file,smb,smb1,ftp,storage,s3,gcs"; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
// Setup protocolHelper with test configuration ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getCrawlerWebProtocols() { return "http,https"; } @Override public String getCrawlerFileProtocols() { return "file,smb,smb1,ftp,storage,s3,gcs"; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
*/ @PostConstruct public void init() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); webProtocols = split(fessConfig.getCrawlerWebProtocols(), ",") .get(stream -> stream.filter(StringUtil::isNotBlank).map(s -> s.trim() + ":").toArray(n -> new String[n])); fileProtocols = split(fessConfig.getCrawlerFileProtocols(), ",")Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 13:59:25 GMT 2026 - 12.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* The value is, e.g. http,https <br> * comment: Supported web protocols for crawling. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getCrawlerWebProtocols(); /** * Get the value for the key 'crawler.file.protocols'. <br> * The value is, e.g. file,smb,smb1,ftp,storage,s3,gcs <br> * comment: Supported file protocols for crawling.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2)