- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 3,312 for inst (0.03 sec)
-
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
* Indicates whether Unicode strings are supported or used. */ int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001; /** * Indicates whether OEM strings are supported or used. */ int NTLMSSP_NEGOTIATE_OEM = 0x00000002; /** * Indicates whether the authentication target is requested from * the server. */ int NTLMSSP_REQUEST_TARGET = 0x00000004; /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java
public static final int MIN_VERSION = 0x0100; // SMB Direct 1.0 /** Maximum supported SMB Direct protocol version (1.0) */ public static final int MAX_VERSION = 0x0100; // SMB Direct 1.0 /** SMB Direct negotiate request message type */ public static final int NEGOTIATE_REQUEST = 0x01; // Message fields private int minVersion = MIN_VERSION; private int maxVersion = MAX_VERSION;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
// Test with different parameters int[][] testCases = { { 0, 256 }, { 128, 128 }, { 255, 1 }, { 0, 0 } }; for (int[] testCase : testCases) { // Arrange byte[] buffer = new byte[512]; int bufferIndex = testCase[0]; int len = testCase[1]; // Act int result = response.readDataWireFormat(buffer, bufferIndex, len);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java
*/ private static class TestAndXServerMessageBlock extends AndXServerMessageBlock { private int paramWordsWritten = 0; private int bytesWritten = 0; private int paramWordsRead = 0; private int bytesRead = 0; private boolean retainPayload = false; private byte[] rawPayload = null;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/rpcTest.java
when(mockNdrBuffer.dec_ndr_short()).thenReturn((int) (short) 0x9ABC, (int) (short) 0xDEF0); when(mockNdrBuffer.dec_ndr_small()).thenReturn((int) (byte) 0x11, (int) (byte) 0x22, // clock seq bytes (int) (byte) 0xAA, (int) (byte) 0xBB, (int) (byte) 0xCC, (int) (byte) 0xDD, (int) (byte) 0xEE, (int) (byte) 0xFF // node bytes );
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/DocsTest.kt
}) { val docsTests = testTypes.map { DocsTest(model, stage, os, testJava, it) } init { docsTests.forEach(this::buildType) } } class DocsTestTrigger( model: CIBuildModel, docsTestProject: DocsTestProject, ) : OsAwareBaseGradleBuildType(os = docsTestProject.os, init = { id("${asDocsTestId(model, docsTestProject.os)}_Trigger") name = docsTestProject.name + " (Trigger)"Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jun 17 10:05:07 UTC 2025 - 3K bytes - Viewed (0) -
api/go1.11.txt
pkg syscall (netbsd-386), func Accept4(int, int) (int, Sockaddr, error) pkg syscall (netbsd-386), func Pipe2([]int, int) error pkg syscall (netbsd-386-cgo), func Accept4(int, int) (int, Sockaddr, error) pkg syscall (netbsd-386-cgo), func Pipe2([]int, int) error pkg syscall (netbsd-amd64), func Accept4(int, int) (int, Sockaddr, error) pkg syscall (netbsd-amd64), func Pipe2([]int, int) error
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 22 03:48:56 UTC 2018 - 25K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeTest.java
void testWriteDataWireFormatPartialData() { // Arrange int partialOffset = 5; int partialLength = 8; TransTransactNamedPipe trans = new TransTransactNamedPipe(mockConfig, TEST_FID, TEST_DATA, partialOffset, partialLength); byte[] dst = new byte[100]; int dstIndex = 0; // Act int bytesWritten = trans.writeDataWireFormat(dst, dstIndex); // Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2SetFileInformationResponse.java
} @Override int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int writeParametersWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int writeDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @OverrideRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt
*/ internal class ContinuationSource( private val source: BufferedSource, ) : Source { var length: Int = 0 var flags: Int = 0 var streamId: Int = 0 var left: Int = 0 var padding: Int = 0 @Throws(IOException::class) override fun read( sink: Buffer, byteCount: Long, ): Long { while (left == 0) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 19.8K bytes - Viewed (0)