- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 1,474 for Results (0.26 sec)
-
okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt
"10000003b00102a032880f0290011faceb00c00000002", ), ) dns = buildLocalhost(bootstrapClient, true) val result = dns.lookup("google.com") assertThat(result.size).isEqualTo(2) assertThat(result).contains(address("157.240.1.18")) assertThat(result).contains(address("2a03:2880:f029:11:face:b00c:0:2")) val request1 = server.takeRequest() assertThat(request1.method).isEqualTo("GET")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java
// Test API result with messages public void test_apiResultWithMessages() { String testMessage = "Test error message"; ApiResult.ApiErrorResponse errorResponse = new ApiResult.ApiErrorResponse(); errorResponse.message(testMessage); errorResponse.status(Status.BAD_REQUEST); ApiResult result = errorResponse.result(); assertNotNull(result);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
source.put("NestedMap", nested); Map<String, Object> result = searchLogHelper.toLowerHyphen(source); assertEquals("value1", result.get("test_key")); assertEquals("value2", result.get("another_test_key")); @SuppressWarnings("unchecked") Map<String, Object> nestedResult = (Map<String, Object>) result.get("nested_map"); assertEquals("nestedValue", nestedResult.get("nested_key"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
}; try { String result = SearchEngineUtil.getXContentString(xContent, XContentType.JSON); assertNotNull(result); assertTrue(result.contains("name")); assertTrue(result.contains("test")); assertTrue(result.contains("123")); assertTrue(result.contains("true")); assertTrue(result.contains("items"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/AbstractSortedMultiset.java
Iterator<Entry<E>> entryIterator = entryIterator(); if (entryIterator.hasNext()) { Entry<E> result = entryIterator.next(); result = Multisets.immutableEntry(result.getElement(), result.getCount()); entryIterator.remove(); return result; } return null; } @Override public @Nullable Entry<E> pollLastEntry() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationRequestTest.java
void testIsSigningEnforcedReturnsTrue() { // Given when(negotiationRequest.isSigningEnforced()).thenReturn(true); // When boolean result = negotiationRequest.isSigningEnforced(); // Then assertTrue(result, "isSigningEnforced should return true when signing is enforced"); verify(negotiationRequest, times(1)).isSigningEnforced(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComSessionSetupAndXTest.java
byte[] buffer = new byte[1024]; int result = setupAndX.readBytesWireFormat(buffer, 0); // The implementation always returns 0 assertEquals(0, result, "readBytesWireFormat returns 0"); } @Test void testToString() { String result = setupAndX.toString(); assertNotNull(result);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
assertEquals(user, chain3.lastUpdatedUser); } // Test changePassword with no chains public void test_changePassword_noChains() { boolean result = authenticationManager.changePassword("testuser", "newpass"); assertTrue(result); // Returns true when no chains present } // Test changePassword with single chain success public void test_changePassword_singleChain_success() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/OptionalUtilTest.java
assertNotNull(result); assertTrue(result.isPresent()); assertEquals(testValue, result.get()); assertEquals(0, result.get().size()); } public void test_ofNullable_withNullList() { List<String> testValue = null; OptionalEntity<List<String>> result = OptionalUtil.ofNullable(testValue); assertNotNull(result);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java
void testToString() { String result = smbInfoAllocation.toString(); assertNotNull(result); assertTrue(result.contains("SmbInfoAllocation")); assertTrue(result.contains("alloc=")); assertTrue(result.contains("free=")); assertTrue(result.contains("sectPerAlloc=")); assertTrue(result.contains("bytesPerSect=")); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)