- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 475 for lost (0.03 sec)
-
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
entry.updateChild("file1.txt", 1024L, 1000L, false, 0x20, 500L, 800L); entry.markComplete(); // Break lease with loss of read cache int newState = Smb2LeaseState.SMB2_LEASE_HANDLE_CACHING; // Lost read cache directoryLeaseManager.handleDirectoryLeaseBreak(leaseKey, newState); // Cache should be invalidated assertFalse(entry.isComplete());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
public List<SmbFile> batchExists(List<String> paths) { // Group paths by parent directory Map<String, List<String>> pathsByParent = paths.stream() .collect(Collectors.groupingBy(this::getParentPath)); List<SmbFile> results = new ArrayList<>(); for (Map.Entry<String, List<String>> entry : pathsByParent.entrySet()) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
* * @param directoryPath directory path * @return list of cached files or null */ public List<SmbFile> getCachedDirectoryListing(String directoryPath) { DirectoryCacheEntry entry = getCacheEntry(directoryPath); if (entry == null || !entry.isComplete()) { return null; } List<SmbFile> files = new ArrayList<>();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/ServerMessageBlockTest.java
byte[] buffer = new byte[8]; long time = System.currentTimeMillis(); ServerMessageBlock.writeTime(time, buffer, 0); long readTime = ServerMessageBlock.readTime(buffer, 0); // Precision may be lost, so check within a second assertTrue(Math.abs(time - readTime) < 1000); } @Test void testTimeReadWriteZero() { byte[] buffer = new byte[8];
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
} }; } } ``` ### 10.2 Batch Handle Operations ```java public class BatchHandleOperations { public void reconnectMultipleHandles(List<HandleInfo> handles) { List<CompletableFuture<Void>> futures = new ArrayList<>(); for (HandleInfo handle : handles) { futures.add(CompletableFuture.runAsync(() -> { try {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
void testErrorCategories() { // Network error exception = new SmbOperationException(SmbOperationException.ErrorCode.CONNECTION_RESET, "Connection lost"); assertTrue(exception.isNetworkError()); assertFalse(exception.isAuthenticationError()); assertFalse(exception.isFileSystemError()); assertFalse(exception.isTransientError()); // Authentication error
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.1K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
```java package jcifs.internal.witness; import java.util.List; import java.util.ArrayList; public class WitnessNotification { private final WitnessEventType eventType; private final long timestamp; private final String resourceName; private final List<WitnessIPAddress> newIPAddresses; private final List<WitnessIPAddress> oldIPAddresses; private final String clientAccessPoint;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.pathmap_list=Path Mapping List labels.log_file_list=Log File List labels.labeltype_list=Label Type List labels.key_match_list=Key Match List labels.job_log_list=Job Log List labels.group_list=Group List labels.file_config_list=File Config List labels.file_auth_list=File Authentication List labels.failure_url_list=Failure URL List labels.elevate_word_list=Elevate Word List labels.duplicate_host_list=Duplicate Host List
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 44K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.pathmap_list=Path Mapping List labels.log_file_list=Log File List labels.labeltype_list=Label Type List labels.key_match_list=Key Match List labels.job_log_list=Job Log List labels.group_list=Group List labels.file_config_list=File Config List labels.file_auth_list=File Authentication List labels.failure_url_list=Failure URL List labels.elevate_word_list=Elevate Word List labels.duplicate_host_list=Duplicate Host List
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 44K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
/** * This is a special name for querying the master browser that serves the * list of hosts found in "Network Neighborhood". */ public static final String MASTER_BROWSER_NAME = "\u0001\u0002__MSBROWSE__\u0002"; /** * A special generic name specified when connecting to a host for which * a name is not known. Not all servers respond to this name. */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0)