- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 1,112 for appends (0.06 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsElevateWord.java
StringBuilder sb = new StringBuilder(); sb.append(dm).append(boost); sb.append(dm).append(createdBy); sb.append(dm).append(createdTime); sb.append(dm).append(permissions); sb.append(dm).append(reading); sb.append(dm).append(suggestWord); sb.append(dm).append(updatedBy); sb.append(dm).append(updatedTime); if (sb.length() > dm.length()) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemUtils.java
buffer.append(", "); } buffer.append("line ").append(problem.getLineNumber()); } if (problem.getColumnNumber() > 0) { if (!buffer.isEmpty()) { buffer.append(", "); } buffer.append("column ").append(problem.getColumnNumber()); } return buffer.toString(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 4.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionException.java
msg.append(System.lineSeparator()); for (Dependency dependency : result.getUnresolvedDependencies()) { msg.append("dependency: ").append(dependency).append(System.lineSeparator()); List<Exception> exceptions = result.getResolutionErrors(dependency); for (Exception e : exceptions) { msg.append("\t").append(e.getMessage()).append(System.lineSeparator());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java
sb.append("CompressionNegotiateContext{"); sb.append("flags=0x").append(Integer.toHexString(flags)); sb.append(", algorithms=["); if (compressionAlgorithms != null) { for (int i = 0; i < compressionAlgorithms.length; i++) { if (i > 0) sb.append(", "); sb.append(getAlgorithmName(compressionAlgorithms[i]));Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 7.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-CacheControlCommon.kt
buildString { if (noCache) append("no-cache, ") if (noStore) append("no-store, ") if (maxAgeSeconds != -1) append("max-age=").append(maxAgeSeconds).append(", ") if (sMaxAgeSeconds != -1) append("s-maxage=").append(sMaxAgeSeconds).append(", ") if (isPrivate) append("private, ") if (isPublic) append("public, ") if (mustRevalidate) append("must-revalidate, ")Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
.append(",ntlmsspFlags=0x") .append(Hexdump.toHexString(this.ntlmsspFlags, 8)) .append(",workstation=") .append(this.workstation) .append(",isEstablished=") .append(this.isEstablished) .append(",state=") .append(this.state)Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
callbacks/create.go
if vs, ok := defaultValueFieldsHavingValue[field]; ok { values.Columns = append(values.Columns, clause.Column{Name: field.DBName}) for idx := range values.Values { if vs[idx] == nil { values.Values[idx] = append(values.Values[idx], stmt.DefaultValueOf(field)) } else { values.Values[idx] = append(values.Values[idx], vs[idx]) } } } } case reflect.Struct:
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Tue Jul 29 11:06:13 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsBoostDocumentRule.java
StringBuilder sb = new StringBuilder(); sb.append(dm).append(boostExpr); sb.append(dm).append(createdBy); sb.append(dm).append(createdTime); sb.append(dm).append(sortOrder); sb.append(dm).append(updatedBy); sb.append(dm).append(updatedTime); sb.append(dm).append(urlExpr); if (sb.length() > dm.length()) { sb.delete(0, dm.length());
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* @param names the path components to append to the classes directory * @return the Path object pointing to the classes directory */ public static Path getClassesPath(final String... names) { return getPath("WEB-INF/", "classes", names); } /** * Gets the path to original files directory. * * @param names the path components to append to the orig directoryRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
return buildString { append(name) append('=') append(value) if (persistent) { if (expiresAt == Long.MIN_VALUE) { append("; max-age=0") } else { append("; expires=").append(Date(expiresAt).toHttpDateString()) } } if (!hostOnly) { append("; domain=") if (forObsoleteRfc2965) {Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 23.1K bytes - Viewed (0)