- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 219 for transports (0.05 sec)
-
src/test/java/jcifs/smb/SmbTreeImplTest.java
void testTreeConnectSmb2() throws CIFSException, IOException { when(transport.isSMB2()).thenReturn(true); when(transport.getContext()).thenReturn(context); when(session.getTargetHost()).thenReturn("localhost"); // Mock negotiate response for SMB2 Smb2NegotiateResponse nego = mock(Smb2NegotiateResponse.class); when(transport.getNegotiateResponse()).thenReturn(nego);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/TransportException.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.util.transport; import jcifs.CIFSException; /** * Exception class for transport layer errors. * This exception is thrown when transport-related communication errors occur. */ public class TransportException extends CIFSException { /** * */
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/test/java/jcifs/smb/SmbTreeConnectionTest.java
SmbTransportImpl transport = mock(SmbTransportImpl.class); when(tree.isConnected()).thenReturn(true); when(tree.getSession()).thenReturn(session); when(tree.acquire(false)).thenReturn(tree); when(session.getTransport()).thenReturn(transport); when(transport.isDisconnected()).thenReturn(false); when(transport.getRemoteHostName()).thenReturn("host");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTree.java
synchronized (session.transport()) { String unc; while (connectionState != 0) { if (connectionState == 2 || connectionState == 3) { // connected or disconnecting return; } try { session.transport.wait(); } catch (final InterruptedException ie) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
this.macSigningKey = macSigningKey; this.signSequence = initialSequence; } /** * Constructs a signing digest from transport and authentication information * * @param transport * The SMB transport containing server encryption key * @param auth * The NTLM password authenticator containing user credentials * @throws SmbException
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
- Fixed a bug in client-go where new clients with customized `Dial`, `Proxy`, `GetCert` config may get stale HTTP transports. ([#95427](https://github.com/kubernetes/kubernetes/pull/95427), [@roycaihw](https://github.com/roycaihw)) [SIG API Machinery]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
apache-maven/pom.xml
<dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-transport-file</artifactId> </dependency> <!-- HTTP/1.1, lowest priority, Java8+ (still must as some ITs force it) --> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-transport-wagon</artifactId> </dependency> <!-- HTTP/1.1, medium priority, Java8+ --> <dependency>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Sep 06 21:30:13 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
super.setNext(next); } /** * {@inheritDoc} * * @see jcifs.util.transport.Request#getCreditCost() */ @Override public int getCreditCost() { return 1; } /** * {@inheritDoc} * * @see jcifs.util.transport.Request#setRequestCredits(int) */ @Override public void setRequestCredits(final int credits) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
import jcifs.smb1.util.LogStream; import jcifs.smb1.util.transport.Request; import jcifs.smb1.util.transport.Response; import jcifs.smb1.util.transport.Transport; import jcifs.smb1.util.transport.TransportException; /** * Legacy SMB transport implementation for SMB1 protocol communication. * Handles the low-level transport layer for SMB1 protocol messages. */ public class SmbTransport extends Transport implements SmbConstants {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Message.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.util.transport; /** * Base class for transport-layer messages in the jCIFS network communication. * Provides common functionality for message handling and processing. * * @author mbechler */ public interface Message { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0)