- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 343 for guide (0.02 sec)
-
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
assertNull(serverData.encryptionKey); // Test guid (typically 16 bytes) byte[] guid = new byte[16]; Arrays.fill(guid, (byte) 0xAB); serverData.guid = guid; assertNotNull(serverData.guid); assertArrayEquals(guid, serverData.guid); assertEquals(16, serverData.guid.length); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java
int caps = SMBUtil.readInt4(buffer, 8); assertTrue((caps & Smb2Constants.SMB2_GLOBAL_CAP_DFS) != 0); // Verify client GUID byte[] guid = new byte[16]; System.arraycopy(buffer, 12, guid, 0, 16); assertArrayEquals(testMachineId, guid); // Verify dialects assertEquals(0x0210, SMBUtil.readInt2(buffer, 36)); assertEquals(0x0300, SMBUtil.readInt2(buffer, 38));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java
assertNotNull(response.getServerGuid(), "Server GUID should not be null"); assertEquals(16, response.getServerGuid().length, "Server GUID should be 16 bytes"); assertArrayEquals(new byte[16], response.getServerGuid(), "Initial server GUID should be all zeros"); assertEquals(0, response.getSecurityMode(), "Initial security mode should be 0");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
README.md
* Extendable, flexible plugin API: Database Resolver (Multiple Databases, Read/Write Splitting) / Prometheus… * Every feature comes with tests * Developer Friendly ## Getting Started * GORM Guides [https://gorm.io](https://gorm.io) * Gen Guides [https://gorm.io/gen/index.html](https://gorm.io/gen/index.html) ## Contributing [You can help to deliver a better GORM, check out things you can do](https://gorm.io/contribute.html)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Nov 07 02:20:06 UTC 2023 - 1.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
} @Test @DisplayName("Should return server GUID") void testGetServerGuid() throws Exception { // Given byte[] guid = new byte[16]; for (int i = 0; i < 16; i++) { guid[i] = (byte) i; } setPrivateField(response, "serverGuid", guid); // When byte[] result = response.getServerGuid(); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequestTest.java
request.encode(buffer, 0); // Verify zero GUID byte[] extractedGuid = new byte[16]; System.arraycopy(buffer, 4, extractedGuid, 0, 16); assertArrayEquals(zeroGuid, extractedGuid); } @Test @DisplayName("Test encode with all 0xFF GUID") void testEncodeWithMaxGuid() { byte[] maxGuid = new byte[16];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/DurableHandleContextTest.java
} @Test public void testDurableHandleV2RequestWithGuid() { HandleGuid guid = new HandleGuid(); DurableHandleV2Request request = new DurableHandleV2Request(60000, false, guid); assertEquals(guid, request.getCreateGuid()); assertEquals(60000, request.getTimeoutMs()); assertFalse(request.isPersistent()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 4.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.14.md
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon Jun 14 22:06:39 UTC 2021 - 271.5K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/META-INF/LICENSE.vm
#* *##set ( $project.url = 'https://github.com/google/guava/' ) #* *##elseif ( $project.url.startsWith( "https://github.com/google/guice/" ) ) #* *##set ( $project.url = 'https://github.com/google/guice/' ) #* *##end #* *### #* *### Classworlds is in boot directory, not in lib #* *##if ( $project.artifact.artifactId == "plexus-classworlds" )
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 4.2K bytes - Viewed (0)