- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 30 for smb2 (0.02 seconds)
-
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
assertEquals("file:", protocolHelper.getFileProtocols()[0]); assertEquals("smb:", protocolHelper.getFileProtocols()[1]); assertEquals("smbx:", protocolHelper.getFileProtocols()[2]); assertTrue(protocolHelper.isValidFileProtocol("smbx://test")); protocolHelper.addFileProtocol("smbx"); assertEquals(2, protocolHelper.getWebProtocols().length);
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/main/java/org/codelibs/fess/helper/PermissionHelper.java
} else if (responseData.getUrl().startsWith("smb1:")) { final org.codelibs.jcifs.smb1.SID[] allowedSids = (org.codelibs.jcifs.smb1.SID[]) metaDataMap .get(org.codelibs.fess.crawler.client.smb1.SmbClient.SMB_ALLOWED_SID_ENTRIES); if (allowedSids != null) { for (final org.codelibs.jcifs.smb1.SID sid : allowedSids) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 15.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
* * @param url the URL to check * @return true if the URL uses a file path protocol (smb, smb1, file, ftp, s3, gcs) */ public boolean isFilePathProtocol(final String url) { return url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("file:") || url.startsWith("ftp:") || url.startsWith("s3:") || url.startsWith("gcs:"); } /**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/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
assertTrue(goAction.isFileSystemPath("smb://server/share/path/file.txt")); assertTrue(goAction.isFileSystemPath("smb://192.168.1.1/share/file.txt")); assertTrue(goAction.isFileSystemPath("smb://server/")); } @Test public void test_isFileSystemPath_smb1_protocol() { assertTrue(goAction.isFileSystemPath("smb1://server/share/path/file.txt"));
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
assertEquals("smb://server/share", wizardAction.convertCrawlingPath("smb://server/share")); assertEquals("smb://192.168.1.1/path", wizardAction.convertCrawlingPath("smb://192.168.1.1/path")); } @Test public void test_convertCrawlingPath_smb1_protocol() { assertEquals("smb1://server/share", wizardAction.convertCrawlingPath("smb1://server/share"));
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/helper/SambaHelperTest.java
} @Test public void test_getAccountId_smb1_basic() throws SmbException { // Note: SMB1 SID testing is limited due to interface constraints // This test verifies the method exists and handles the SMB1 SID parameter type ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getSmbAvailableSidTypes() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
public String getCrawlerWebProtocols() { return "http,https"; } @Override public String getCrawlerFileProtocols() { return "file,smb,smb1,ftp,storage,s3,gcs"; } @Override public String getCrawlerDocumentFileNameEncoding() { return ""; } @Override
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/opensearch/config/exentity/DataConfig.java
smbAuthList.add(smbAuth); final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth = new org.codelibs.fess.crawler.client.smb1.SmbAuthentication(); smb1Auth.setDomain(domain == null ? StringUtil.EMPTY : domain); smb1Auth.setServer(hostname);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 17.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
smbAuth.setPassword(fileAuth.getPassword()); smbAuthList.add(smbAuth); final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth = new org.codelibs.fess.crawler.client.smb1.SmbAuthentication(); smb1Auth.setDomain(domain == null ? StringUtil.EMPTY : domain); smb1Auth.setServer(fileAuth.getHostname());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 11.1K bytes - Click Count (0) -
src/main/resources/crawler/rule.xml
<property name="notModifiedHttpCodes">(int[])[304]</property> </component> </property> <property name="allRequired">true</property> <postConstruct name="addRule"> <arg>"url"</arg> <arg>"(file|smb|smb1|ftp):.*"</arg> </postConstruct> <postConstruct name="addRule"> <arg>"mimeType"</arg> <!-- Supported MIME type --> <arg> "(application/xml" + "|application/xhtml\+xml"
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 29 08:21:02 GMT 2026 - 4.6K bytes - Click Count (0)