- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 165 for inconsistency (0.42 sec)
-
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
long actualSize = MemoryUtil.sizeOf(complexMap); assertEquals(689L, actualSize); } public void test_getUsedMemory_variations() { // Test multiple calls to ensure consistency long memory1 = MemoryUtil.getUsedMemory(); assertTrue(memory1 >= 0); // Create some objects to change memory usage @SuppressWarnings("unused")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
assertNotNull(decimalProvider); assertEquals(Long.valueOf(1000L), decimalConfig.getTimeAdjustTimeMillisAsLong()); } // Test provider consistency public void test_providerConsistency() { // Create multiple providers with same config FessTimeResourceProvider provider1 = new FessTimeResourceProvider(mockConfig);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
// Even with zero timeout, if using timeout constructor, flag should be set assertEquals(0x1, buffer[12]); } @Test @DisplayName("Test size method consistency") void testSizeMethodConsistency() { // Test that size() method returns consistent value with encode() String pipeName = "ConsistencyTest"; // Test without timeout
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
} executor.shutdown(); assertTrue(executor.awaitTermination(30, TimeUnit.SECONDS), "All threads should complete within timeout"); // Analyze timing consistency across threads if (!timings.isEmpty()) { double avgTime = timings.stream().mapToLong(Long::longValue).average().orElse(0.0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
TransWaitNamedPipeResponse testResponse = new TransWaitNamedPipeResponse(testConfig); // Assert assertNotNull(testResponse); } @Test @DisplayName("Test toString consistency across multiple calls") void testToStringConsistency() { // Act String result1 = response.toString(); String result2 = response.toString(); // Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
FileEntry[] entries1 = dfsRootEnum.getEntries(); FileEntry[] entries2 = dfsRootEnum.getEntries(); FileEntry[] entries3 = dfsRootEnum.getEntries(); // Verify consistency assertNotNull(entries1); assertNotNull(entries2); assertNotNull(entries3); assertEquals(entries1.length, entries2.length); assertEquals(entries2.length, entries3.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
} // PUT /api/admin/elevateword/setting /** * Updates an existing elevate word setting. * Refreshes all elevate words in the suggest helper to maintain consistency. * * @param body elevate word setting data to update * @return JSON response with updated setting ID and status */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java
* listeners, see {@link Futures}. For a simplified but general listener interface, see {@link * Futures#addCallback addCallback()}. * * <p>Memory consistency effects: Actions in a thread prior to adding a listener <a * href="https://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html#jls-17.4.5"> * <i>happen-before</i></a> its execution begins, perhaps in another thread. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
// Null netName SmbShareInfo info3 = new SmbShareInfo(); assertEquals(0, info3.hashCode()); // Objects.hashCode(null) returns 0 } @Test @DisplayName("Test hashCode consistency") void testHashCodeConsistency() { SmbShareInfo info = new SmbShareInfo(TEST_NET_NAME, TEST_TYPE, TEST_REMARK); int hashCode1 = info.hashCode(); int hashCode2 = info.hashCode();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ListenableFuture.java
* listeners, see {@link Futures}. For a simplified but general listener interface, see {@link * Futures#addCallback addCallback()}. * * <p>Memory consistency effects: Actions in a thread prior to adding a listener <a * href="https://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html#jls-17.4.5"> * <i>happen-before</i></a> its execution begins, perhaps in another thread. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8K bytes - Viewed (0)