- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 462 for Protocols (0.05 sec)
-
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) -
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) -
android/guava/src/com/google/common/net/HttpHeaders.java
/** * The HTTP <a href="https://datatracker.ietf.org/doc/html/rfc6455">{@code * Sec-WebSocket-Protocol}</a> header field name. * * @since 28.0 */ public static final String SEC_WEBSOCKET_PROTOCOL = "Sec-WebSocket-Protocol"; /** * The HTTP <a href="https://datatracker.ietf.org/doc/html/rfc6455">{@code * Sec-WebSocket-Version}</a> header field name. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 27 20:37:16 UTC 2025 - 35.4K bytes - Viewed (0) -
cmd/update.go
if u.Scheme == "https" || u.Scheme == "http" { reader, err = getUpdateReaderFromURL(u, transport, mode) if err != nil { return nil, nil, err } } else { return nil, nil, fmt.Errorf("unsupported protocol scheme: %s", u.Scheme) } defer xhttp.DrainBody(reader) b := bytebufferpool.Get() bc := bytebufferpool.Get() defer func() { b.Reset() bc.Reset() bytebufferpool.Put(b)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/util/Encdec.java
* MA 02111-1307, USA */ package jcifs.util; import java.io.IOException; import java.util.Date; import jcifs.SmbConstants; /** * Encoding and decoding utility class for SMB protocol. * Provides methods for encoding/decoding various data types in different byte orders. */ public final class Encdec { private static final long SEC_BETWEEEN_1904_AND_1970 = 2082844800L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.4K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
SMB3 leases provide a client caching mechanism that replaces the traditional oplock mechanism. Leases enable better performance through client-side caching while maintaining cache coherency across multiple clients. ## 2. Protocol Specification Reference - **MS-SMB2 Section 2.2.13**: SMB2 CREATE Request with Lease Context - **MS-SMB2 Section 2.2.14**: SMB2 CREATE Response with Lease State - **MS-SMB2 Section 2.2.23**: SMB2 LEASE_BREAK Notification
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
docs/en/docs/advanced/behind-a-proxy.md
These headers preserve information about the original request that would otherwise be lost: * **X-Forwarded-For**: The original client's IP address * **X-Forwarded-Proto**: The original protocol (`https`) * **X-Forwarded-Host**: The original host (`mysuperapp.com`) When **FastAPI CLI** is configured with `--forwarded-allow-ips`, it trusts these headers and uses them, for example to generate the correct URLs in redirects.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 19:34:08 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
private final String targetHost; private byte[] preauthIntegrityHash; // Multi-channel support private ChannelManager channelManager; // Witness protocol support fields private WitnessClient witnessClient; private boolean witnessEnabled; // SMB3 lease support private LeaseManager leaseManager; // SMB3 persistent handle support
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java
@Test @DisplayName("Should handle negative values in buffer") void shouldHandleNegativeValuesInBuffer() throws SMBProtocolDecodingException { // Given - negative values (treated as unsigned in protocol) ByteBuffer buffer = ByteBuffer.allocate(24); buffer.order(ByteOrder.LITTLE_ENDIAN); buffer.putLong(-1L); buffer.putLong(-1L); buffer.putInt(-1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.9K bytes - Viewed (0) -
src/main/webapp/js/admin/jquery-3.7.1.min.js
this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace($t,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(D)||[""],null==v.crossDomain){r=C.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Xt.protocol+"//"+Xt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=ce.param(v.data,v.traditional))...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 85.5K bytes - Viewed (0)