- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 54 for WHITESPACE (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java
* </p> * <p> * The class supports various XPath result types, including BOOLEAN, NUMBER, STRING, NODESET, and NODE. * It also provides options to trim whitespace from extracted values and to specify the character encoding for the output. * </p> * <p> * The {@link #getData(AccessResultData)} method allows retrieving the transformed data as a String (XML content),Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.1K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java
import com.google.caliper.Benchmark; import com.google.caliper.Param; import java.util.BitSet; import java.util.Random; import org.jspecify.annotations.NullUnmarked; /** Benchmark for the {@link CharMatcher#whitespace} implementation. */ @NullUnmarked public class WhitespaceMatcherBenchmark { private static final int STRING_LENGTH = 10000; private static final String OLD_WHITESPACE_TABLE =Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/MultipartReaderTest.kt
val part = parts.nextPart()!! assertThat(part.headers).isEqualTo(headersOf()) assertThat(part.body.readUtf8()).isEqualTo("abcd") assertThat(parts.nextPart()).isNull() } @Test fun `skip whitespace after boundary`() { val multipart = """ |--simple boundary | |abcd |--simple boundary-- """.trimMargin()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed May 28 02:11:14 UTC 2025 - 15.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt
val result = copyOf(size + 1) result[result.lastIndex] = value return result as Array<String> } /** Increments [startIndex] until this string is not ASCII whitespace. Stops at [endIndex]. */ internal fun String.indexOfFirstNonAsciiWhitespace( startIndex: Int = 0, endIndex: Int = length, ): Int { for (i in startIndex until endIndex) { when (this[i]) {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 10.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt
* simplifies use of single-valued fields whose values routinely contain commas, such as cookies or * dates. * * This class trims whitespace from values. It never returns values with leading or trailing * whitespace. * * Instances of this class are immutable. Use [Builder] to create instances. */ @Suppress("NAME_SHADOWING") class Headers internal constructor(
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
return new CopyOptions().excludeNull(); } /** * Returns a {@link CopyOptions} that excludes properties with whitespace values from the operation. * * @return A {@link CopyOptions} that excludes properties with whitespace values from the operation. * @see CopyOptions#excludeWhitespace() */ public static CopyOptions excludeWhitespace() {
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/FilenameExtractorEnhancedTest.java
final ExtractData result = filenameExtractor.getText(in, params); assertNotNull(result); assertEquals("", result.getContent()); } /** * Test extraction with whitespace-only filename. */ public void test_getText_withWhitespaceFilename() { final InputStream in = new ByteArrayInputStream(new byte[0]); final Map<String, String> params = new HashMap<>();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java
assertEquals(10, item.getQueryFreq()); } @Test public void test_parseSearchWordsWithExcludedWords() throws Exception { String[] words = new String[] { " ", "エンジン" }; // First word is whitespace only String[] fields = new String[] { "content" }; SuggestAnalyzer analyzer = suggester.settings().analyzer().new DefaultContentsAnalyzer();
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 12.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
assertFalse(robotsTxt.allows("http://example.com:8080/path", "MultiColonBot")); assertTrue(robotsTxt.allows("/path:with:colons", "MultiColonBot")); // Test ExtraSpaceBot - extra whitespace should be handled assertFalse(robotsTxt.allows("/spaced/", "ExtraSpaceBot")); assertTrue(robotsTxt.allows("/also-spaced/", "ExtraSpaceBot")); // Test MixedCaseBot - mixed case directives should work
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorEnhancedTest.java
final ExtractData result = textExtractor.getText(in, null); assertNotNull(result); assertNotNull(result.getContent()); } /** * Test extraction with whitespace-only content. */ public void test_getText_whitespaceOnly_extractsAsIs() { final String whitespaceContent = " \t\n\r ";Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.9K bytes - Viewed (0)