- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 448 for rprotocol (0.15 sec)
-
src/main/java/jcifs/Decodable.java
*/ package jcifs; import jcifs.internal.SMBProtocolDecodingException; /** * Interface for objects that can be decoded from a byte buffer. * This interface provides methods for deserializing data from SMB protocol messages. * * @author mbechler */ public interface Decodable { /** * Decode data from a byte buffer * * @param buffer the byte buffer containing the data to decode
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
} throw new DcerpcException("DCERPC transport not supported: " + url); } /** * Bind the handle * * @throws DcerpcException * if there is a DCE/RPC protocol error * @throws IOException * if there is an I/O error during binding */ public void bind() throws DcerpcException, IOException { synchronized (this) { try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
} /* * We co-opt some URI resolution tests for our purposes. * Some of the tests have queries and anchors that are a little silly here. */ /** http://gbiv.com/protocols/uri/rfc/rfc2396.html#rfc.section.C.1 */ public void testRfc2396Normal() { assertEquals("/a/b/c/g", simplifyPath("/a/b/c/g")); assertEquals("/a/b/c/g", simplifyPath("/a/b/c/./g"));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcError.java
* Operation range error fault code */ int DCERPC_FAULT_OP_RNG_ERROR = 0x1C010002; /** * Unknown interface fault code */ int DCERPC_FAULT_UNK_IF = 0x1C010003; /** * Protocol error fault code */ int DCERPC_FAULT_PROTO_ERROR = 0x1c01000b; /** * Array of all DCE/RPC fault codes */ int[] DCERPC_FAULT_CODES =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonManager.java
* * @param id an id * @return corresponding authentication info */ AuthenticationInfo getAuthenticationInfo(String id); ProxyInfo getProxy(String protocol); void getArtifact(Artifact artifact, ArtifactRepository repository) throws TransferFailedException, ResourceDoesNotExistException;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmChallenge.java
*/ package jcifs.smb1.smb1; import java.io.Serializable; import jcifs.smb1.UniAddress; import jcifs.smb1.util.Hexdump; /** * Represents an NTLM authentication challenge in SMB1 protocol. */ public final class NtlmChallenge implements Serializable { /** * The NTLM challenge bytes received from the server. */ public byte[] challenge; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt
val request = Request .Builder() .url("https://localhost:1/") .build() val interceptorResponse = Response .Builder() .request(request) .protocol(Protocol.HTTP_1_1) .code(200) .message("Intercepted!") .body("abc".toResponseBody("text/plain; charset=utf-8".toMediaType())) .build() client = client .newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 28.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
assertNotNull(str); assertTrue(str.contains("4096")); } /** * Test FileInformation constants match expected protocol values */ @Test @DisplayName("Test FileInformation constants match SMB protocol values") void testFileInformationConstantsMatchProtocol() { // These values are defined in MS-FSCC specification
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
regression-test/src/androidTest/java/okhttp/regression/compare/ApacheHttpClientHttp2Test.kt
client.use { client -> client.start() val request = SimpleHttpRequests.get("https://google.com/robots.txt") val response = client.execute(request, LoggingCallback).get() println("Protocol ${response.version}") println("Response ${response.code}") println("${response.body.bodyText.substring(0, 20)}...") Assert.assertEquals(ProtocolVersion("HTTP", 2, 0), response.version) } } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoResponseType.java
* such as metadata requests and logout actions. */ public enum SsoResponseType { /** * Indicates a request for SSO metadata, which is typically used for * configuration and discovery in protocols like SAML. */ METADATA, /** * Indicates a request to perform a logout operation, terminating the * user's SSO session. */ LOGOUT;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)