- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for ftp (0.01 sec)
-
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
return "file,smb,ftp"; } }); final ProtocolHelper protocolHelper = new ProtocolHelper(); protocolHelper.init(); assertTrue(protocolHelper.isValidFileProtocol("file:///path/to/file")); assertTrue(protocolHelper.isValidFileProtocol("smb://server/share")); assertTrue(protocolHelper.isValidFileProtocol("ftp://server/path"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 21.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
// ftp assertUrlLink("ftp://www.codelibs.org/", // "ftp://www.codelibs.org/"); assertUrlLink("ftp://www.codelibs.org/あ", // "ftp://www.codelibs.org/あ"); assertUrlLink("ftp://www.codelibs.org/%E3%81%82", // "ftp://www.codelibs.org/%E3%81%82"); assertUrlLink("ftp://www.codelibs.org/%z", //
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
return roleTypeList; } /** * Extracts role type information from FTP (File Transfer Protocol) response data. * Processes FTP metadata to extract file owner and group information. * * @param responseData the response data containing FTP metadata * @return a list of role type strings extracted from the FTP file permissions */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
String[] customWebProtocols = { "http:", "https:", "ftp:" }; String[] customFileProtocols = { "file:", "smb:" }; parser.setWebProtocols(customWebProtocols); parser.setFileProtocols(customFileProtocols); assertEquals("\\Qftp://test\\E.*", parser.parseFilterPaths("ftp://test", true, false)); assertEquals("\\Qftp://test\\E.*", parser.parseFilterPaths("ftp://test", false, true)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
} return value; } /** * Extracts the filename from a URL, handling various protocols and URL decoding. * Processes HTTP, HTTPS, file, SMB, and FTP URLs appropriately. * * @param url the URL to extract filename from * @param encoding the character encoding (currently unused in this method) * @return the extracted filename, or empty string if none found
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.crawler.client.CrawlerClientFactory; import org.codelibs.fess.crawler.client.ftp.FtpAuthentication; import org.codelibs.fess.crawler.client.ftp.FtpClient; import org.codelibs.fess.crawler.client.http.Authentication; import org.codelibs.fess.crawler.client.http.HcHttpClient; import org.codelibs.fess.crawler.client.http.form.FormScheme;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
import org.codelibs.fess.Constants; import org.codelibs.fess.app.service.FileAuthenticationService; import org.codelibs.fess.crawler.client.CrawlerClientFactory; import org.codelibs.fess.crawler.client.ftp.FtpAuthentication; import org.codelibs.fess.crawler.client.smb.SmbAuthentication; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.opensearch.config.bsentity.BsFileConfig;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 03 09:24:53 UTC 2025 - 10.9K bytes - Viewed (0) -
okhttp/src/jvmTest/resources/web-platform-test-urltestdata.txt
http://foo:80/ s:http h:foo p:/ http://foo:81/ s:http h:foo port:81 p:/ httpa://foo:80/ s:httpa p://foo:80/ http://foo:-80/ https://foo:443/ s:https h:foo p:/ https://foo:80/ s:https h:foo port:80 p:/ ftp://foo:21/ s:ftp h:foo p:/ ftp://foo:80/ s:ftp h:foo port:80 p:/ gopher://foo:70/ s:gopher h:foo p:/ gopher://foo:443/ s:gopher h:foo port:443 p:/ ws://foo:80/ s:ws h:foo p:/ ws://foo:81/ s:ws h:foo port:81 p:/
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
url = "smb1://example.com/test%E3%81%82.txt"; exp = "test%E3%81%82.txt"; assertEquals(exp, transformer.getFileName(url, Constants.UTF_8)); url = "ftp://example.com/test%E3%81%82.txt"; exp = "test%E3%81%82.txt"; assertEquals(exp, transformer.getFileName(url, Constants.UTF_8)); } public void test_decodeUrl_null() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String FORM = "FORM"; /** Samba authentication type identifier. */ public static final String SAMBA = "SAMBA"; /** FTP authentication type identifier. */ public static final String FTP = "FTP"; // ============================================================ // Query Reserved Characters and Patterns // ============================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0)