- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 223 for rtrim (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
if (logger.isDebugEnabled()) { logger.debug("Failed to read data.", e); } return StringUtil.EMPTY; } return buf.toString().trim(); } private boolean isSpaceChar(final int c) { for (final int spaceChar : spaceChars) { if (c == spaceChar) { return true; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} catch (final Throwable t) { logger.warn("Failed to set SessionTrackingMode.", t); } split(fessConfig.getQueryFacetQueries(), "\n").of(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).forEach(s -> { final String[] values = StringUtils.split(s, ":", 2); if (values.length != 2) { return; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
src/main/java/jcifs/http/Handler.java
StringTokenizer tokenizer = new StringTokenizer(path, "|"); while ( tokenizer.hasMoreTokens() ) { String provider = tokenizer.nextToken().trim(); if ( provider.equals("jcifs") ) continue; String className = provider + "." + protocol + ".Handler"; try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
} matcher.appendReplacement(sb, buf.toString().replace("\\", "\\\\").replace("$", "\\$")); } matcher.appendTail(sb); return sb.toString().replaceAll("\\s+", " ").trim(); } public String getEncoding() { return encoding; } public void setEncoding(final String encoding) { this.encoding = encoding; } /**
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.5K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
if (file.extension == "groovy" || file.extension == "java") { val originalText = file.readText() val text = originalText.lineSequence() .filterNot { it.trim().startsWith("//") } .joinToString("\n") if (text.contains(content) && exceptions.all { !text.contains(it) }) { println("Found suspicious test file: $file")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} } else { StringTokenizer st = new StringTokenizer(ro, ","); while ( st.hasMoreTokens() ) { String s = st.nextToken().trim(); if ( s.equalsIgnoreCase("LMHOSTS") ) { this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS); } else if ( s.equalsIgnoreCase("WINS") ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableLongArray.java
* value slightly too high than slightly too low. If the value is not exact, the {@link * ImmutableLongArray} that is built will very likely occupy more memory than strictly necessary; * to trim memory usage, build using {@code builder.build().trimmed()}. */ public static Builder builder(int initialCapacity) { checkArgument(initialCapacity >= 0, "Invalid initialCapacity: %s", initialCapacity);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 22.3K bytes - Viewed (0) -
guava/src/com/google/common/primitives/ImmutableIntArray.java
* value slightly too high than slightly too low. If the value is not exact, the {@link * ImmutableIntArray} that is built will very likely occupy more memory than strictly necessary; * to trim memory usage, build using {@code builder.build().trimmed()}. */ public static Builder builder(int initialCapacity) { checkArgument(initialCapacity >= 0, "Invalid initialCapacity: %s", initialCapacity);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 21.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java
} private static class RangeValue { private String value; private boolean closed; RangeValue(String value, boolean closed) { this.value = value.trim(); this.closed = closed; } @Override public String toString() { return value; } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.7K bytes - Viewed (0)