- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 329 for consistently (0.14 sec)
-
docs/smb3-features/04-directory-leasing-design.md
SmbFile[] updatedFiles = dir.listFiles(); assertEquals(initialFiles.length + 1, updatedFiles.length); } ``` ## 9. Error Handling ### 9.1 Cache Consistency ```java public class CacheConsistencyManager { public void handleInconsistency(String directoryPath, String fileName) { log.warn("Cache inconsistency detected for: {}/{}", directoryPath, fileName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
* across different segments. * * The page replacement algorithm's data structures are kept casually consistent with the map. The * ordering of writes to a segment is sequentially consistent. An update to the map and recording * of reads may not be immediately reflected on the algorithm's data structures. These structures
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedInts.java
* example, {@code [] < [1] < [1, 2] < [2] < [1 << 31]}. * * <p>The returned comparator is inconsistent with {@link Object#equals(Object)} (since arrays * support only identity equality), but it is consistent with {@link Arrays#equals(int[], int[])}. * * <p><b>Java 9+ users:</b> Use {@link Arrays#compareUnsigned(int[], int[]) * Arrays::compareUnsigned}. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Feb 09 16:22:33 UTC 2025 - 13.8K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
public static final int SMB2_LEASE_FULL = 0x07; // RWH } ``` ### 3.2 Lease Versions - **Lease V1**: Basic lease support (SMB 3.0) - **Lease V2**: Adds epoch support for better consistency (SMB 3.0.2+) ## 4. Data Structures ### 4.1 Lease Key Structure ```java package jcifs.internal.smb2.lease; import java.security.SecureRandom; import java.util.Arrays; public class Smb2LeaseKey {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
assertFalse((executeMask & ACE.FILE_WRITE_DATA) != 0, "Execute should not include write access"); } @Test @DisplayName("Should validate documented bit comment consistency") void shouldValidateDocumentedBitComments() { // Verify that comments in source match actual constant values (not bit positions)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableBiMap.java
/** * Returns an immutable bimap containing the same entries as {@code map}. If {@code map} somehow * contains entries with duplicate keys (for example, if it is a {@code SortedMap} whose * comparator is not <i>consistent with equals</i>), the results of this method are undefined. * * <p>The returned {@code BiMap} iterates over entries in the same order as the {@code entrySet} * of the original map. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 22.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
/** * Deletes a crawling information record and all its associated parameters. * First deletes all related CrawlingInfoParam records, then deletes the main record * with immediate refresh to ensure consistency. * * @param crawlingInfo the crawling information entity to delete */ public void delete(final CrawlingInfo crawlingInfo) { setupDeleteCondition(crawlingInfo);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
} }; SystemHelper systemHelper = new SystemHelper() { @Override public long getCurrentTimeAsLong() { // Return consistent time for testing if (expectedTime[0] == 0) { expectedTime[0] = System.currentTimeMillis(); } return expectedTime[0]; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
int size = request.size(); assertEquals(0, size % 8, "Size should be aligned to 8-byte boundary"); } @Test @DisplayName("Should have consistent size regardless of parameters") void testSizeConsistency() { int originalSize = request.size(); request.setReadLength(65536); assertEquals(originalSize, request.size());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java
assertTrue(result.contains("sectPerAlloc=8")); assertTrue(result.contains("bytesPerSect=512")); } @Test @DisplayName("Should have consistent toString format") void shouldHaveConsistentToStringFormat() throws SMBProtocolDecodingException { // Given ByteBuffer buffer = ByteBuffer.allocate(24);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.9K bytes - Viewed (0)