- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for smb1Client (0.08 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
* * <p> * Usage example: * </p> * * <pre> * {@code * SmbClient smbClient = new SmbClient(); * smbClient.init(); * ResponseData responseData = smbClient.doGet("smb://example.com/share/file.txt"); * // Process the responseData * smbClient.close(); * } * </pre> * * @author shinsuke */ public class SmbClient extends AbstractCrawlerClient {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 22.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
* </p> * * <pre> * {@code * SmbClient smbClient = new SmbClient(); * smbClient.init(); * ResponseData responseData = smbClient.doGet("smb1://example.com/share/file.txt"); * // Process the responseData * smbClient.close(); * } * </pre> * */ public class SmbClient extends AbstractCrawlerClient { private static final Logger logger = LogManager.getLogger(SmbClient.class);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 23K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class SmbClientTest extends PlainTestCase { public void test_doGet_accessTimeoutTarget() { SmbClient client = new SmbClient() { @Override protected ResponseData getResponseData(final String uri, final boolean includeContent) { try { Thread.sleep(2000);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 2.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
StandardCrawlerContainer container = new StandardCrawlerContainer()// .singleton("smbClient", SmbClient.class)// .singleton("mimeTypeHelper", MimeTypeHelperImpl.class); smbClient = container.getComponent("smbClient"); Map<String, Object> params = new HashMap<>(); SmbAuthentication auth1 = new SmbAuthentication();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 13.7K bytes - Viewed (0)