- Sort Score
- Num 10 results
- Language All
Results 241 - 250 of 331 for SUBSTRING (0.06 seconds)
-
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
throw e; } catch (final Exception e) { final String truncatedScript = template.length() > maxScriptLogLength ? template.substring(0, maxScriptLogLength) + "..." : template; logger.warn("Failed to evaluate Groovy script: script(length={})={}, parameterKeys={}", template.length(), truncatedScript, safeParamMap.keySet(), e);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 11.9K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableListMultimap.java
* static final Multimap<Character, String> FIRST_LETTER_MULTIMAP = * Stream.of("banana", "apple", "carrot", "asparagus", "cherry") * .collect(toImmutableListMultimap(str -> str.charAt(0), str -> str.substring(1))); * * // is equivalent to * * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP = * new ImmutableListMultimap.Builder<Character, String>() * .put('b', "anana")
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 09 15:58:48 GMT 2025 - 19.3K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
boolean snapshot = mavenVersion.endsWith("SNAPSHOT"); if (snapshot) { mavenVersion = mavenVersion.substring(0, mavenVersion.length() - "SNAPSHOT".length()); if (mavenVersion.endsWith("-")) { mavenVersion = mavenVersion.substring(0, mavenVersion.length() - 1); } } String[] versionElements = mavenVersion.split("\\.");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:39:11 GMT 2025 - 25.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 33.5K bytes - Click Count (0) -
android/guava/src/com/google/common/io/Files.java
// put it back together String result = Joiner.on('/').join(path); if (pathname.charAt(0) == '/') { result = "/" + result; } while (result.startsWith("/../")) { result = result.substring(3); } if (result.equals("/..")) { result = "/"; } else if (result.isEmpty()) { result = "."; } return result; } /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 05 22:13:21 GMT 2026 - 32.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt
high = mid - 1 } else if (labelBytesLeft > publicSuffixBytesLeft) { low = mid + end + 1 } else { // Found a match. match = this.substring(mid, mid + publicSuffixLength).string(Charsets.UTF_8) break } } } return match } internal fun resetForTests() {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jul 28 07:33:49 GMT 2025 - 8.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 29.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
*/ protected String getDetectText(final String text) { final String result; if (text.length() <= maxTextLength) { result = text; } else { result = text.substring(0, maxTextLength); } return result.replaceAll("\\s+", " "); } /** * Returns the supported language for a given language. * * @param lang The language to check.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 6.9K bytes - Click Count (0) -
apache-maven/src/assembly/maven/bin/JvmConfigParser.java
*/ private static String processLine(String line, String mavenProjectBasedir) { // Remove comments int commentIndex = line.indexOf('#'); if (commentIndex >= 0) { line = line.substring(0, commentIndex); } // Trim whitespace line = line.trim(); // Replace MAVEN_PROJECTBASEDIR placeholdersCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Dec 10 16:40:06 GMT 2025 - 6.4K bytes - Click Count (0)