- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,261 for append (0.06 sec)
-
internal/dsync/lock-args_gen.go
// map header, size 5 // string "UID" o = append(o, 0x85, 0xa3, 0x55, 0x49, 0x44) o = msgp.AppendString(o, z.UID) // string "Resources" o = append(o, 0xa9, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73) o = msgp.AppendArrayHeader(o, uint32(len(z.Resources))) for za0001 := range z.Resources { o = msgp.AppendString(o, z.Resources[za0001]) } // string "Owner" o = append(o, 0xa5, 0x4f, 0x77, 0x6e, 0x65, 0x72)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 10:24:01 UTC 2024 - 10.2K bytes - Viewed (0) -
okhttp/src/main/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 Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:12:05 UTC 2024 - 23.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.9K bytes - Viewed (0) -
cmd/endpoint-ellipses.go
if err != nil { return err } found := false list := *el for i := range list { if list[i].nodeName == u.Host { list[i].disks = append(list[i].disks, u.String()) found = true break } } if !found { list = append(list, node{nodeName: u.Host, disks: []string{u.String()}}) } *el = list return nil } type poolArgs struct { args []string
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 14.7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http/StatusLine.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java
public String toString() { StringBuilder buffer = new StringBuilder(64); buffer.append("{enabled="); buffer.append(enabled); buffer.append(", checksums="); buffer.append(checksumPolicy); buffer.append(", updates="); buffer.append(updatePolicy); buffer.append('}'); return buffer.toString(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/route.go
for _, d := range domains { if !strings.Contains(d, ":") { withoutPort = append(withoutPort, d) // if the domain contains IPv6, such as [fd00:10:96::7fc7] and [fd00:10:96::7fc7]:8090 } else if strings.Count(d, ":") > 2 { // if the domain is only a IPv6 address, such as [fd00:10:96::7fc7], append it if strings.HasSuffix(d, "]") { withoutPort = append(withoutPort, d) } } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 08 20:44:50 UTC 2024 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
int count, i; String str; StringBuffer sb = new StringBuffer(); sb.append( isAllow() ? "Allow " : "Deny " ); appendCol(sb, sid.toDisplayString(), 25); sb.append( " 0x" ).append( Hexdump.toHexString( access, 8 )).append(' '); sb.append(isInherited() ? "Inherited " : "Direct "); appendCol(sb, getApplyToText(), 34); return sb.toString(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
final StringBuilder buf = new StringBuilder(100); buf.append("/WEB-INF/view/").append(page); if (StringUtil.isNotBlank(lang)) { buf.append('_').append(lang); if (StringUtil.isNotBlank(country)) { buf.append('_').append(country); } } buf.append(".jsp"); return buf.toString(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http/BridgeInterceptor.kt
private fun cookieHeader(cookies: List<Cookie>): String = buildString { cookies.forEachIndexed { index, cookie -> if (index > 0) append("; ") append(cookie.name).append('=').append(cookie.value) } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.2K bytes - Viewed (0)