- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 93 for 0x00000008 (0.03 sec)
-
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
assertEquals(domain.toUpperCase(), writtenDomain); } @ParameterizedTest @DisplayName("Test writeParametersWireFormat with various server types") @ValueSource(ints = { 0x00000000, 0x00000001, 0x00000801, 0x80000000, 0xFFFFFFFF }) void testWriteParametersWireFormatVariousServerTypes(int serverType) { String domain = "DOMAIN"; netServerEnum2 = new NetServerEnum2(realConfig, domain, serverType);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/DosErrorTest.java
// Provide a handful of representative mappings present in the table. static Stream<Arguments> knownMappings() { return Stream.of(Arguments.of(0x00000000, 0x00000000), Arguments.of(0x00020001, 0xc000000f), Arguments.of(0x00050001, 0xc0000022), Arguments.of(0x00500001, 0xc0000035), Arguments.of(0x007b0001, 0xc0000033), Arguments.of(0x00320001, 0xC00000BB)); } @ParameterizedTest @MethodSource("knownMappings")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
/** * Directory lease flag for recursive caching */ public static final int DIRECTORY_LEASE_FLAG_RECURSIVE = 0x00000001; /** * Directory lease flag for enabling notifications */ public static final int DIRECTORY_LEASE_FLAG_NOTIFICATIONS = 0x00000002; private Smb2LeaseKey leaseKey; private int leaseState; private DirectoryCacheScope cacheScope; private long maxCacheAge;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 9.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
assertThat(countFrames(logs, "FINE: >> 0x00000000 8 PING ")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: << 0x00000000 8 PING ")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: >> 0x00000000 8 PING ACK")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: << 0x00000000 8 PING ACK")) .isEqualTo(1) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
private final int flags; // Notification flags public static final int WITNESS_RESOURCE_STATE_UNKNOWN = 0x00000000; public static final int WITNESS_RESOURCE_STATE_AVAILABLE = 0x00000001; public static final int WITNESS_RESOURCE_STATE_UNAVAILABLE = 0x000000FF; public WitnessNotification(WitnessEventType eventType, String resourceName) { this.eventType = eventType;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtStatusTest.java
} @Test @DisplayName("Should handle pending status") void testPendingStatus() { // Given int pendingStatus = NtStatus.NT_STATUS_PENDING; // When/Then assertEquals((int) 0x00000103L, pendingStatus); // Pending status is informational (not error)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
verify(mockBuffer, times(2)).enc_ndr_small(0); // minor version and ptype (both are 0) verify(mockBuffer).enc_ndr_small(DcerpcConstants.RPC_C_PF_BROADCAST); // flags verify(mockBuffer).enc_ndr_long(0x00000010); // Little-endian / ASCII / IEEE verify(mockBuffer).enc_ndr_short(message.length); verify(mockBuffer, times(1)).enc_ndr_short(0); // auth_value length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
/** The handle is invalid */ int NT_STATUS_INVALID_HANDLE = 0xC0000008; /** The parameter is incorrect */ int NT_STATUS_INVALID_PARAMETER = 0xC000000d; /** The system cannot find the device specified */ int NT_STATUS_NO_SUCH_DEVICE = 0xC000000e; /** The system cannot find the file specified */ int NT_STATUS_NO_SUCH_FILE = 0xC000000f; /** More processing is required to complete this request */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Crc32cHashFunction.java
processRemaining(EMPTY); } return HashCode.fromInt(~crc0); } static final int[] byteTable = { 0x00000000, 0xf26b8303, 0xe13b70f7, 0x1350f3f4, 0xc79a971f, 0x35f1141c, 0x26a1e7e8, 0xd4ca64eb, 0x8ad958cf, 0x78b2dbcc, 0x6be22838, 0x9989ab3b, 0x4d43cfd0, 0xbf284cd3, 0xac78bf27, 0x5e133c24, 0x105ec76f, 0xe235446c,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 21.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/Smb2HandleCapabilities.java
*/ public final class Smb2HandleCapabilities { /** * Flag indicating persistent handle capability */ public static final int SMB2_DHANDLE_FLAG_PERSISTENT = 0x00000002; /** * Default timeout for durable handles (2 minutes) */ public static final long DEFAULT_DURABLE_TIMEOUT = 120000; /** * Maximum timeout for durable handles (5 minutes) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 1.3K bytes - Viewed (0)