- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 449 for Protocols (0.74 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
try { toHttpUrl() } catch (_: IllegalArgumentException) { null } /** * Returns an [HttpUrl] for this if its protocol is `http` or `https`, or null if it has any * other protocol. */ @JvmStatic @JvmName("get") fun URL.toHttpUrlOrNull(): HttpUrl? = toString().toHttpUrlOrNull() @JvmStatic @JvmName("get")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
docs/features/https.md
common cipher suite and TLS version, your call will fail like this: ``` Caused by: javax.net.ssl.SSLProtocolException: SSL handshake aborted: ssl=0x7f2719a89e80: Failure in SSL library, usually a protocol error error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure (external/openssl/ssl/s23_clnt.c:770 0x7f2728a53ea0:0x00000000)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 24 00:16:30 UTC 2022 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
import org.mockito.Mock; import org.mockito.junit.jupiter.MockitoExtension; /** * Test class for SocketInputStream using JUnit 5 and Mockito. * Tests the NetBIOS session layer protocol implementation. */ @ExtendWith(MockitoExtension.class) class SocketInputStreamTest { /** * Creates a NetBIOS session message header. * The header format is:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
import org.mockito.junit.jupiter.MockitoExtension; import jcifs.dcerpc.ndr.NdrBuffer; /** * Comprehensive test suite for jcifs.dcerpc.DcerpcBind class. * Tests DCE/RPC bind message functionality for MSRPC protocol compliance. */ @ExtendWith(MockitoExtension.class) @DisplayName("DcerpcBind Tests") class DcerpcBindTest { @Mock private DcerpcBinding mockBinding; @Mock
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.7K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
## 2. Protocol Specification Reference - **MS-SMB2 Section 2.2.13.2.12**: SMB2_CREATE_REQUEST_LEASE_V2 for directories - **MS-SMB2 Section 2.2.14.2.12**: SMB2_CREATE_RESPONSE_LEASE_V2 for directories
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java
byte[] buffer = new byte[512]; int headerStart = 0; int bodyStart = Smb2Constants.SMB2_HEADER_LENGTH; // Write SMB2 header (64 bytes) // Protocol ID System.arraycopy(new byte[] { (byte) 0xFE, 'S', 'M', 'B' }, 0, buffer, headerStart, 4); // Structure size (64) SMBUtil.writeInt2(64, buffer, headerStart + 4); // Credit charge
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.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; /** * Utility class holding several protocol constrants * * @author mbechler * * * <p>This interface is intended for internal use.</p> */ public interface SmbConstants { /** * Default SMB port number for direct TCP transport.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; /** * Interface defining NT status codes used in SMB1 protocol operations. * These status codes are returned by SMB servers to indicate the result * of requested operations. The codes follow the Windows NT status code format. */ public interface NtStatus {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
cmd/signature-v2.go
// Content-Type + "\n" + // Date + "\n" + // CanonicalizedProtocolHeaders + // CanonicalizedResource; // // CanonicalizedResource = [ SlashSeparator + Bucket ] + // <HTTP-Request-URI, from the protocol name up to the query string> + // [ subresource, if present. For example "?acl", "?location", "?logging", or "?torrent"]; // // CanonicalizedProtocolHeaders = <described below>
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
// Then assertSame(expectedRandom, result, "Should return delegated random"); verify(mockDelegate).getRandom(); } @Test @DisplayName("Protocol version methods should delegate correctly") void testProtocolVersionDelegation() { // Given DialectVersion minVersion = DialectVersion.SMB1; DialectVersion maxVersion = DialectVersion.SMB311;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0)