- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 1,782 for Fontaine (0.08 sec)
-
guava-testlib/src/com/google/common/collect/testing/testers/MapEntrySetTester.java
assertEquals(e0(), entryItr.next()); entryItr.remove(); assertTrue(getMap().isEmpty()); assertFalse(entrySet.contains(e0())); } public void testContainsEntryWithIncomparableKey() { try { assertFalse(getMap().entrySet().contains(mapEntry(IncomparableType.INSTANCE, v0()))); } catch (ClassCastException acceptable) { // allowed by the spec } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
if (!switchFlg) { boolean contains = doc.get("content_description").toString().toLowerCase().contains(query1); if (!contains) { switchFlg = true; } } else { assertTrue(doc.get("content_description").toString().toLowerCase().contains(query2), doc.toString()); } } } @Test
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
// Verify string contains all important fields assertTrue(result.contains("SmbFindFileBothDirectoryInfo")); assertTrue(result.contains("nextEntryOffset=100")); assertTrue(result.contains("fileIndex=200")); assertTrue(result.contains("creationTime=")); assertTrue(result.contains("lastAccessTime=")); assertTrue(result.contains("lastWriteTime="));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocListTest.java
docList.addProcessingTime(500); String result = docList.toString(); assertTrue(result.contains("contentSize=1000")); assertTrue(result.contains("processingTime=500")); assertTrue(result.contains("elementData=[")); assertTrue(result.contains("id=1")); } public void test_serialization() { DocList docList = new DocList();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
guava-gwt/pom.xml
<fileset dir="${project.build.directory}/guava-sources"> <contains text="@GwtCompatible"/> </fileset> </copy> <!-- The following don't contain @GwtCompatible for dependency reasons. --> <copy toDir="${project.build.directory}/guava-gwt-sources">
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/MapFeature.java
* {@code get(null)}, {@code keySet().contains(null)} or {@code remove(null)}. */ ALLOWS_NULL_KEY_QUERIES, ALLOWS_NULL_KEYS(ALLOWS_NULL_KEY_QUERIES), /** * The map does not throw {@code NullPointerException} on calls such as {@code * containsValue(null)}, {@code values().contains(null)} or {@code values().remove(null)}. */ ALLOWS_NULL_VALUE_QUERIES,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
assertFalse(deleteJobLogCalled[0]); assertFalse(deleteUserInfoCalled[0]); // Assert result contains skip messages assertTrue(result.contains("Skipped to purge search logs")); assertTrue(result.contains("Skipped to purge job logs")); assertTrue(result.contains("Skipped to purge user info logs")); } // Test crawlingInfoService exception handling
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/smb1/smb1/NtlmContextTest.java
assertTrue(str.contains("NtlmContext[")); assertTrue(str.contains("auth=")); assertTrue(str.contains("ntlmsspFlags=")); assertTrue(str.contains("workstation=")); assertTrue(str.contains("isEstablished=false")); assertTrue(str.contains("state=1")); assertTrue(str.contains("serverChallenge=null")); assertTrue(str.contains("signingKey=null")); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java
assertTrue(aggregateLogJob.execute().contains("Invalid argument")); // Third execution - IllegalStateException assertTrue(aggregateLogJob.execute().contains("Invalid state")); // Fourth execution - NullPointerException assertTrue(aggregateLogJob.execute().contains("Null pointer")); // Fifth execution - RuntimeException
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
okhttp-brotli/src/test/java/okhttp3/brotli/BrotliInterceptorTest.kt
} val uncompressed = brotliInterceptor.decompress(response) val responseString = uncompressed.body.string() assertThat(responseString).contains("\"brotli\": true,") assertThat(responseString).contains("\"Accept-Encoding\": \"br\"") } @Test fun testUncompressGzip() { val s = "1f8b0800968f215d02ff558ec10e82301044ef7c45b3e75269d0c478e340e4a426e007086c4a636c9bb65e" +
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 22 08:12:58 UTC 2025 - 4.4K bytes - Viewed (0)