- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 95 for Asmb2 (0.05 sec)
-
src/test/java/jcifs/tests/ConcurrencyTest.java
import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.SmbConstants; import jcifs.SmbResource; import jcifs.SmbSession; import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.smb2.create.Smb2CloseRequest; import jcifs.internal.smb2.create.Smb2CreateRequest; import jcifs.smb.NtStatus; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbFileOutputStream;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:40:50 UTC 2021 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/NamingTest.java
} @Parameters ( name = "{0}" ) public static Collection<Object> configs () { return getConfigs("smb1", "noUnicode", "forceUnicode", "noUnicode-cp850", "noUnicode-windows-1252", "smb2", "smb30", "smb31"); } @Test public void testASCII () throws CIFSException, MalformedURLException, UnknownHostException { runFilenameTest("just-testing", "adsfg.txt"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 10:48:05 UTC 2020 - 7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/CreateContextRequest.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.create; import jcifs.Encodable; /** * @author mbechler * */ public interface CreateContextRequest extends Encodable { /** * @return context name */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1004 bytes - Viewed (0) -
README.md
## Using Maven ``` <dependency> <groupId>org.codelibs</groupId> <artifactId>jcifs</artifactId> <version>2.1.34</version> </dependency> ``` ## Changes * SMB2 (2.02 protocol level) support, some SMB3 support * Remove global state * Allow per context configuration * Logging through SLF4J * Drop pre-java 1.7 support * Unify authentication subsystem, NTLMSSP/Kerberos support
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/test/java/jcifs/tests/FileOperationsTest.java
super(name, properties); } @Parameters ( name = "{0}" ) public static Collection<Object> configs () { return getConfigs("smb1", "noUnicode", "forceUnicode", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31"); } @Test public void testRenameFile () throws CIFSException, MalformedURLException, UnknownHostException { try ( SmbFile defaultShareRoot = getDefaultShareRoot();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:17:59 UTC 2023 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
* @return whether this tree handle uses SMB2 */ @Override public boolean isSMB2 () { try ( SmbSessionImpl session = this.treeConnection.getSession(); SmbTransportImpl transport = session.getTransport() ) { return transport.isSMB2(); } catch ( SmbException e ) { log.debug("Failed to connect for determining SMB2 support", e); return false;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2Lock.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.lock; import jcifs.Encodable; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2Lock implements Encodable { /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/KerberosTest.java
super(name, properties); } @Parameters ( name = "{0}" ) public static Collection<Object> configs () { return getConfigs("smb1", "smb2", "smb30", "smb31", "forceSpnegoIntegrity"); } @Before public void setup () { Assume.assumeTrue("Skip kerberos auth", getProperties().get("test.skip.kerberos") == null); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
import jcifs.internal.smb2.ServerMessageBlock2; import jcifs.internal.smb2.ServerMessageBlock2Request; import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.smb2.Smb2SigningDigest; import jcifs.internal.smb2.nego.Smb2NegotiateResponse; import jcifs.internal.smb2.session.Smb2LogoffRequest; import jcifs.internal.smb2.session.Smb2SessionSetupRequest; import jcifs.internal.smb2.session.Smb2SessionSetupResponse;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2; /** * @author mbechler * */ public final class Smb2Constants { /** * */ private Smb2Constants () {} /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0)