- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 663 for SMB (0.01 sec)
-
src/main/java/jcifs/smb/SmbOperationException.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import java.io.Serializable; import java.util.Collections; import java.util.HashMap; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSException; /** * Unified exception class for SMB operations providing enhanced error handling, * retry policies, and contextual information. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return timeout for establishing a socket connection, in milliseconds */ int getConnTimeout(); /** * Property {@code jcifs.smb.client.sessionTimeout} (int, default 35000) * * * @return timeout for SMB sessions, in milliseconds */ int getSessionTimeout(); /** *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** OEM encoding for non-Unicode operations */ protected String oemEncoding = SmbConstants.DEFAULT_OEM_ENCODING; /** SMB flags2 field value */ protected int flags2 = 0; /** SMB client capabilities */ protected int capabilities = 0; /** Maximum number of concurrent SMB sessions */ protected int sessionLimit = SmbConstants.DEFAULT_SSN_LIMIT; /** Whether to disable Nagle's algorithm for TCP connections */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeOutputStream.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import jcifs.CIFSException; /** * Output stream for writing to SMB named pipes. * * This class provides a stream-based interface for writing * data to SMB named pipes over the network. * * @author mbechler */ public class SmbPipeOutputStream extends SmbFileOutputStream {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeInternal.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.SmbTree; import jcifs.internal.CommonServerMessageBlockResponse; import jcifs.internal.Request; /** * Internal SMB tree connection interface providing extended tree management capabilities.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
public static final int SMB2_NEGOTIATE_SIGNING_REQUIRED = 0x0002; /** * SMB 2.0.2 dialect (Windows Vista/Server 2008) */ public static final int SMB2_DIALECT_0202 = 0x0202; /** * SMB 2.1 dialect (Windows 7/Server 2008R2) */ public static final int SMB2_DIALECT_0210 = 0x0210; /** * SMB 3.0 dialect (Windows 8/Server 2012) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/resources/log4j.properties
#log4j.logger.jcifs.internal.smb2.create: DEBUG #log4j.logger.jcifs.smb.SmbTreeConnection: DEBUG #log4j.logger.jcifs.smb.SmbTransportImpl: DEBUG #log4j.logger.jcifs.util.transport.Transport: DEBUG #log4j.logger.jcifs.smb.DfsImpl: DEBUG #log4j.logger.jcifs.smb: DEBUG #log4j.logger.jcifs.smb.SmbFileOutputStream: TRACE #log4j.logger.jcifs.smb.SigningDigest: TRACE
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 806 bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
* does not have a parent. In this case <code>smb://</code> is returned. * * @return The parent directory of this SMB resource or * <code>smb://</code> if the resource refers to the root of the URL * hierarchy which incidentally is also <code>smb://</code>. */ String getParent(); /** * Returns the full uncanonicalized URL of this SMB resource. An
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TestLockingTest.java
t1.numThreads = 2; t1.url = "smb://server1/share/file.txt"; t2.numThreads = 5; t2.url = "smb://server2/share/file.txt"; // Verify independence assertEquals(2, t1.numThreads, "t1 should have its own numThreads value"); assertEquals(5, t2.numThreads, "t2 should have its own numThreads value");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
Properties props = new Properties(); props.setProperty("jcifs.smb.client.minVersion", "SMB202"); props.setProperty("jcifs.smb.client.maxVersion", "SMB311"); props.setProperty("jcifs.smb.client.responseTimeout", "30000"); props.setProperty("jcifs.smb.client.soTimeout", "35000"); // Create a new configuration and context
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0)