- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 3,550 for aString (0.03 sec)
-
android/guava-tests/test/com/google/common/net/HostSpecifierTest.java
ImmutableList.of("foo.blah", "", "[google.com]"); public void testGoodIpAddresses() throws ParseException { for (String spec : GOOD_IPS) { assertGood(spec); } } public void testBadIpAddresses() { for (String spec : BAD_IPS) { assertBad(spec); } } public void testGoodDomains() throws ParseException { for (String spec : GOOD_DOMAINS) {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/ResourceTraversalTest.java
*/ @Test public void testForEachFile() throws Exception { final File rootDir = ResourceUtil.getBuildDir(getClass()); final String path = ResourceUtil.getResourcePath(getClass()); final int pos = path.lastIndexOf("/"); final String baseDirectory = path.substring(0, pos); ResourceTraversalUtil.forEach(rootDir, baseDirectory, (ResourceHandler) (path1, is) -> { try {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java
String mappings; String settings; // Load both resources try (InputStream is1 = getClass().getClassLoader().getResourceAsStream("suggest_indices/suggest/mappings-default.json")) { assertNotNull("Mappings resource should exist", is1); mappings = new String(is1.readAllBytes(), StandardCharsets.UTF_8); }Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 9.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapAlternateLink.java
return href; } /** * Sets the href URL. * @param href the href URL to set */ public void setHref(final String href) { this.href = href; } @Override public String toString() { return "SitemapAlternateLink [hreflang=" + hreflang + ", href=" + href + "]"; }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 2.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt
override fun putValue( s: String, obj: Any, ): Unit = throw UnsupportedOperationException() override fun removeValue(s: String): Unit = throw UnsupportedOperationException() override fun getValue(s: String): Any = throw UnsupportedOperationException() override fun getValueNames(): Array<String> = throw UnsupportedOperationException()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.1K bytes - Viewed (0) -
README.md
String[] tags = new String[]{"technology", "search"}; String[] roles = new String[]{"admin", "user"}; SuggestItem item = new SuggestItem( new String[]{"Search Engine", "検索エンジン"}, // text variations readings, // pronunciation readings 1, // boost score tags, // categorization tagsRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
src/test/java/jcifs/dcerpc/DcerpcExceptionTest.java
assertEquals("0x12345678", exception.getMessage(), "Message should be hex string for unknown error code."); } /** * Test constructor DcerpcException(String msg). */ @Test void testConstructorWithMessage() { String message = "Test message for DcerpcException."; DcerpcException exception = new DcerpcException(message);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java
} @Override public List<String> convert(final String text, final String field, final String... lang) throws IOException { // Use LinkedHashSet to maintain insertion order while eliminating duplicates final Set<String> resultSet = new LinkedHashSet<>(); resultSet.add(text); // Start with the original text as the first input List<String> currentInputs = new ArrayList<>();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 3.3K bytes - Viewed (1) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTagsTest.kt
.build() val callA = client.newCall(request) assertThat(callA.tag(String::class) { "a" }).isEqualTo("a") assertThat(callA.tag(String::class) { "b" }).isEqualTo("a") val callB = callA.clone() assertThat(callB.tag(String::class) { "c" }).isEqualTo("c") assertThat(callB.tag(String::class) { "d" }).isEqualTo("c") }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Oct 26 14:54:46 UTC 2025 - 2.8K bytes - Viewed (0)