- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 1,081 for difference (0.09 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
StopwordsItem item4 = new StopwordsItem(1, "different"); // Same input should have same hashCode regardless of id assertEquals(item1.hashCode(), item2.hashCode()); assertEquals(item1.hashCode(), item3.hashCode()); // Different input should have different hashCode assertNotSame(item1.hashCode(), item4.hashCode()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
assertEquals(tag1.hashCode(), tag2.hashCode()); // Different tag PrunedTag tagDifferentTag = new PrunedTag("span"); tagDifferentTag.setId("test"); tagDifferentTag.setCss("highlight"); tagDifferentTag.setAttr("data-value", "123"); assertFalse(tag1.equals(tagDifferentTag)); // Different id PrunedTag tagDifferentId = new PrunedTag("div");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
assertEquals(32, derived3.length, "Derived key should have correct length"); assertFalse(Arrays.equals(derived1, derived2), "Different labels should produce different keys"); assertFalse(Arrays.equals(derived1, derived3), "Different contexts should produce different keys"); } @Test public void testStoreNullKey() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SecurityBlobTest.java
@Test @DisplayName("equals: different content -> false") void equals_differentContent_false() { // Arrange SecurityBlob a = new SecurityBlob(new byte[] { 1, 2, 3 }); SecurityBlob b = new SecurityBlob(new byte[] { 1, 9, 3 }); // Act & Assert assertFalse(a.equals(b), "Different content should not be equal"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
assertNotNull(client1); assertNotNull(client2); assertNotSame(client1, client2); } // Test constructor with different thread context public void test_constructorInDifferentThread() throws Exception { // Test that constructor works in different thread final CrawlerEngineClient[] clientHolder = new CrawlerEngineClient[1]; final Exception[] exceptionHolder = new Exception[1];
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java
} // Test with different mail configurations public void test_mailConfiguration() { FessConfig config = ComponentUtil.getFessConfig(); assertEquals("Test Admin", config.getMailFromName()); assertEquals("******@****.***", config.getMailFromAddress()); assertEquals("localhost", config.getMailHostname()); } // Test with different from names
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
// Verify different cause types are handled assertEquals(npeCause, npeException.getCause()); assertEquals(iseCause, iseException.getCause()); assertEquals(oomCause, oomException.getCause()); } public void test_messageCodeWithPropertyKey() { // Setup - test message code with different property keys final String message = "Query field error";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/Dispatcher.java
import java.util.ArrayDeque; import java.util.Iterator; import java.util.Queue; import java.util.concurrent.ConcurrentLinkedQueue; /** * Handler for dispatching events to subscribers, providing different event ordering guarantees that * make sense for different situations. * * <p><b>Note:</b> The dispatcher is orthogonal to the subscriber's {@code Executor}. The dispatcher
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java
// Test that writeSetupWireFormat always returns 0 byte[] buffer = new byte[100]; int result = response.writeSetupWireFormat(buffer, 0); assertEquals(0, result); // Test with different offset result = response.writeSetupWireFormat(buffer, 50); assertEquals(0, result); } @Test @DisplayName("Test writeParametersWireFormat returns 0")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
} } @Nested @DisplayName("Cross-Implementation Tests") class CrossImplementationTests { @Test @DisplayName("Should have different context types for different implementations") void testDifferentContextTypes() { PreauthIntegrityNegotiateContext preauth = new PreauthIntegrityNegotiateContext();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0)