- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 58 for SMB (0.03 sec)
-
src/test/java/jcifs/tests/ContextConfigTest.java
Config.registerSmbURLHandler(); try (SmbFile f = new SmbFile("smb://127.0.0.1/")) { Assert.assertEquals("smb://127.0.0.1/", f.toString()); } try (SmbFile f = new SmbFile("smb://foo:b%40r@127.0.0.1/")) { Assert.assertEquals("smb://foo:******@127.0.0.1/", f.toString()); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.useBatching = Config.getBoolean(p, "jcifs.smb.client.useBatching", false); this.useUnicode = Config.getBoolean(p, "jcifs.smb.client.useUnicode", true); this.useLargeReadWrite = Config.getBoolean(p, "jcifs.smb.client.useLargeReadWrite", true); this.forceUnicode = Config.getBoolean(p, "jcifs.smb.client.forceUnicode", false); this.signingPreferred = Config.getBoolean(p, "jcifs.smb.client.signingPreferred", false);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
public String getCrawlerWebProtocols() { return "http,https"; } @Override public String getCrawlerFileProtocols() { return "file,smb"; } }); final ProtocolHelper protocolHelper = new ProtocolHelper(); protocolHelper.init(); assertEquals(2, protocolHelper.getWebProtocols().length);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Jun 18 00:44:11 UTC 2024 - 4.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationTest.java
*/ package org.codelibs.fess.crawler.client.smb; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class SmbAuthenticationTest extends PlainTestCase { public void test_getPathPrefix() { SmbAuthentication smbAuthentication; smbAuthentication = new SmbAuthentication(); assertEquals("smb://", smbAuthentication.getPathPrefix());
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.5K bytes - Viewed (0) -
README.md
jcifs-ng will be a proper choice for many users. There are a lot of SMB devices in the world. Some of them only work with the old jcifs library. If you want to support many SMB devices, CodeLibs jcifs library will be helpful. For example, since [Fess](https://github.com/codelibs/fess) needs to support many SMB devices, it uses this library.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed May 10 09:29:34 UTC 2023 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property <tt>jcifs.smb.client.ipcSigningEnforced</tt> (boolean, default true) * * @return whether to enforce SMB signing for IPC connections */ boolean isIpcSigningEnforced (); /** * * Property <tt>jcifs.smb.client.signingEnforced</tt> (boolean, default false) * * @return whether to enforce SMB signing (for everything) */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolderTest.java
assertEquals(hogeAuth, smbAuthenticationHolder.get("smb://hoge/")); assertEquals(fugaAuth, smbAuthenticationHolder.get("smb://fuga/")); assertEquals(fooAuth, smbAuthenticationHolder.get("smb://foo:1000/")); assertEquals(hogeAuth, smbAuthenticationHolder.get("smb://hoge/text.txt")); assertEquals(fugaAuth, smbAuthenticationHolder.get("smb://fuga/text.txt"));
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
import jcifs.SmbTransportPool; import jcifs.netbios.NameServiceClientImpl; import jcifs.smb.BufferCacheImpl; import jcifs.smb.CredentialsInternal; import jcifs.smb.DfsImpl; import jcifs.smb.Handler; import jcifs.smb.NtlmPasswordAuthenticator; import jcifs.smb.SIDCacheImpl; import jcifs.smb.SmbFile; import jcifs.smb.SmbNamedPipe; import jcifs.smb.SmbTransportPoolImpl; /** * @author mbechler * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 27 18:25:00 UTC 2022 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
import jcifs.smb.NtStatus; import jcifs.smb.NtlmNtHashAuthenticator; import jcifs.smb.NtlmPasswordAuthentication; import jcifs.smb.NtlmPasswordAuthenticator; import jcifs.smb.NtlmUtil; import jcifs.smb.SmbAuthException; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbSessionInternal; import jcifs.smb.SmbTransportInternal; import jcifs.smb.SmbTreeHandleInternal; /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.SID; import jcifs.config.PropertyConfiguration; import jcifs.context.BaseContext; import jcifs.smb.NtlmPasswordAuthenticator; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbFileInputStream; /** * @author shinsuke * */ public class SmbClient extends AbstractCrawlerClient {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 23 01:54:36 UTC 2024 - 17.9K bytes - Viewed (0)