- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for 900Z (0.02 sec)
-
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
when(mockFile2.isDirectory()).thenReturn(true); when(mockFile2.getAttributes()).thenReturn(0x10); when(mockFile2.createTime()).thenReturn(600L); when(mockFile2.lastAccess()).thenReturn(900L); // Update cache List<SmbFile> files = Arrays.asList(mockFile1, mockFile2); directoryLeaseManager.updateDirectoryCache(directoryPath, files);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java
public void testGetChildren() { // Add multiple children entry.updateChild("file1.txt", 1024L, 1000L, false, 0x20, 500L, 800L); entry.updateChild("file2.txt", 2048L, 2000L, false, 0x20, 600L, 900L); entry.updateChild("dir1", 0L, 3000L, true, 0x10, 700L, 1000L); List<DirectoryCacheEntry.FileInfo> children = entry.getChildren(); assertEquals(3, children.size());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java
// Verify third chunk assertEquals(700L, SMBUtil.readInt8(buffer, EXPECTED_SIZE * 2)); assertEquals(800L, SMBUtil.readInt8(buffer, EXPECTED_SIZE * 2 + 8)); assertEquals(900, SMBUtil.readInt4(buffer, EXPECTED_SIZE * 2 + 16)); } } @Nested @DisplayName("Edge Case Tests") class EdgeCaseTests { @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java
public S3Client s3Client; private GenericContainer minioServer; @Override protected void setUp() throws Exception { super.setUp(); final int port = 9000; logger.info("Creating {}", IMAGE_NAME); minioServer = new GenericContainer<>(IMAGE_NAME)// .withEnv("MINIO_ACCESS_KEY", ACCESS_KEY)// .withEnv("MINIO_SECRET_KEY", SECRET_KEY)//Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 20.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java
public StorageClient storageClient; private GenericContainer minioServer; @Override protected void setUp() throws Exception { super.setUp(); final int port = 9000; logger.info("Creating {}", IMAGE_NAME); minioServer = new GenericContainer<>(IMAGE_NAME)// .withEnv("MINIO_ACCESS_KEY", ACCESS_KEY)// .withEnv("MINIO_SECRET_KEY", SECRET_KEY)//Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
chunkStart += CHUNK_SIZE; assertEquals(700L, SMBUtil.readInt8(buffer, chunkStart)); assertEquals(800L, SMBUtil.readInt8(buffer, chunkStart + 8)); assertEquals(900, SMBUtil.readInt4(buffer, chunkStart + 16)); } @Test @DisplayName("Should not modify buffer beyond encoded area") void testEncodeDoesNotModifyBeyondArea() { // GivenRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0)