- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 262 for Trim (0.14 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt
fun add(line: String) = apply { val index = line.indexOf(':') require(index != -1) { "Unexpected header: $line" } add(line.substring(0, index).trim(), line.substring(index + 1)) } /** * Add a header with the specified name and value. Does validation of header names and values. */ fun add( name: String,
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java
if (versioning != null) { String timestamp = versioning.getLastUpdated() == null ? "" : versioning.getLastUpdated().trim(); if (versioning.getRelease() != null && !versioning.getRelease().isEmpty() && timestamp.compareTo(versions.releaseTimestamp) > 0) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
// Test with empty array baos.reset(); byte[] data3 = {}; Hexdump.hexdump(ps, data3, 0, 0); String output3 = baos.toString(); assertEquals("", output3.trim()); } @Test @DisplayName("Should handle multiple lines in hexdump") void testHexdumpMultipleLines() { ByteArrayOutputStream baos = new ByteArrayOutputStream();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
sb.append(escapedKey).append("="); } else { String val0 = valueLines.get(0); String rv0 = typed ? val0 : escapeJava(val0); if (!val0.trim().startsWith(escapedKey)) { valueLines.set(0, escapedKey + " = " + rv0 /*+ (0 < lastLine? "\\": "")*/); sb.append(escapedKey).append(" = ").append(rv0); } else {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 09:03:48 UTC 2025 - 38.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
sb.append(escapedKey).append("="); } else { String val0 = valueLines.get(0); String rv0 = typed ? val0 : escapeJava(val0); if (!val0.trim().startsWith(escapedKey)) { valueLines.set(0, escapedKey + " = " + rv0 /*+ (0 < lastLine? "\\": "")*/); sb.append(escapedKey).append(" = ").append(rv0); } else {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 38.4K bytes - Viewed (0) -
schema/field.go
} } case reflect.String: field.DataType = String if field.HasDefaultValue && !skipParseDefaultValue { field.DefaultValue = strings.Trim(field.DefaultValue, "'") field.DefaultValue = strings.Trim(field.DefaultValue, `"`) field.DefaultValueInterface = field.DefaultValue } case reflect.Struct: if _, ok := fieldValue.Interface().(*time.Time); ok { field.DataType = Time
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Sat Nov 22 03:14:36 UTC 2025 - 32.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
final List<String> pathList = new ArrayList<>(); pathList.add("/usr/share/fess/bin"); if (path != null) { stream(path.split(File.pathSeparator)).of(stream -> stream.map(String::trim).forEach(s -> pathList.add(s))); } if (logger.isDebugEnabled()) { logger.debug("search paths: {}", pathList); } available = generatorList.stream().map(s -> {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.4K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt
val versions = mutableMapOf<Version, String>() var version: String? = null parameters.releasedVersionsFile.get().asFile.forEachLine(Charsets.UTF_8) { val line = it.trim() if (line.startsWith("\"version\"")) { version = line.substring(line.indexOf("\"", 11) + 1, line.lastIndexOf("\"")) } if (line.startsWith("\"buildTime\"")) {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Jun 02 09:57:54 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
* @param logSuffix the suffix to append to log file names * @return this ExecJob instance for method chaining */ public ExecJob logSuffix(final String logSuffix) { this.logSuffix = logSuffix.trim().replaceAll("\\s", "_"); return this; } /** * Sets the timeout for this job execution. * * @param timeout the timeout in seconds (-1 for no timeout)Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.2K bytes - Viewed (0)