- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 61 for rwhitespace (0.13 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketExtensionsTest.kt
clientMaxWindowBits = 15, clientNoContextTakeover = true, serverMaxWindowBits = 8, serverNoContextTakeover = true, ), ) } @Test fun noWhitespace() { assertThat(parse("permessage-deflate;server_no_context_takeover;client_no_context_takeover")) .isEqualTo( WebSocketExtensions( perMessageDeflate = true,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
tags = PrunedTag.parse(null); assertEquals(0, tags.length); // Test whitespace only tags = PrunedTag.parse(" "); assertEquals(0, tags.length); // Test commas only tags = PrunedTag.parse(",,,"); assertEquals(0, tags.length); // Test mixed whitespace and commas tags = PrunedTag.parse(" , , , "); assertEquals(0, tags.length); }
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/org/codelibs/fess/score/LtrQueryRescorerTest.java
RescorerBuilder<?> result = ltrQueryRescorer.evaluate(params); assertNull(result); } public void test_evaluate_withWhitespaceModelName() { // Test when model name contains only whitespace ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getLtrModelName() { return " "; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
item.setNewInput(newSpecialInput); assertEquals(newSpecialInput, item.toLineString()); } public void test_whitespaceHandling() { // Test with various whitespace StopwordsItem item1 = new StopwordsItem(1, " "); assertEquals(" ", item1.getInput()); assertEquals(" ", item1.toLineString()); StopwordsItem item2 = new StopwordsItem(2, "\t\n\r");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
guava/src/com/google/common/io/Resources.java
return asCharSource(url, charset).readLines(callback); } /** * Reads all of the lines from a URL. The lines do not include line-termination characters, but do * include other leading and trailing whitespace. * * <p>This method returns a mutable {@code List}. For an {@code ImmutableList}, use {@code * Resources.asCharSource(url, charset).readLines()}. * * @param url the URL to read from
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/org/codelibs/fess/helper/VirtualHostHelperTest.java
assertEquals("", basePath); basePath = virtualHostHelper.getVirtualHostBasePath(" ", new HtmlNext("/test")); assertEquals("", basePath); // StringUtil.isBlank considers whitespace as blank } public void test_getVirtualHostKey() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/xml/XmlEscapersTest.java
assertEquals(s, xmlEscaper.escape(s)); // Test ASCII control characters. for (char ch = 0; ch < 0x20; ch++) { if (ch == '\t' || ch == '\n' || ch == '\r') { // Only these whitespace chars are permitted in XML, if (shouldEscapeWhitespaceChars) { assertEscaping(xmlEscaper, "&#x" + Integer.toHexString(ch).toUpperCase() + ";", ch); } else { assertUnescaped(xmlEscaper, ch);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertEquals("タイトル", doc.get("title_ja")); assertNull(doc.get("content_ja")); // content field was not present } public void test_getSupportedLanguage_withWhitespace() { // Test that whitespace is not trimmed (as per implementation) assertNull(languageHelper.getSupportedLanguage(" ja ")); assertNull(languageHelper.getSupportedLanguage("ja "));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
assertProvideThrowsException("Test'Classification'"); } public void test_provide_withWhitespace() { // Test classification names with whitespace assertProvideThrowsException(" "); assertProvideThrowsException(" "); assertProvideThrowsException("\t"); assertProvideThrowsException("\n"); assertProvideThrowsException("\r");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0)