- Sort Score
- Result 10 results
- Languages All
Results 691 - 700 of 968 for Buffer (0.1 sec)
-
src/bytes/bytes.go
m = Count(s, old) } if m == 0 { // Just return a copy. return append([]byte(nil), s...) } if n < 0 || m < n { n = m } // Apply replacements to buffer. t := make([]byte, len(s)+n*(len(new)-len(old))) w := 0 start := 0 for i := 0; i < n; i++ { j := start if len(old) == 0 { if i > 0 { _, wid := utf8.DecodeRune(s[start:])
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Sep 03 20:55:15 UTC 2024 - 35.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* incorrect. To handle this properly it is necessary * to redirect the tree to the target server first before * establishing buffer size. These exists() calls facilitate * that. */ resolveDfs(null); /* It is invalid for the source path to be a child of the destination
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
cmd/bucket-handlers.go
reader = part possibleShardSize := (r.ContentLength - headerLen) if globalStorageClass.ShouldInline(possibleShardSize, false) { // keep versioned false for this check var b bytes.Buffer n, err := io.Copy(&b, reader) if err != nil { apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest) apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 12:24:04 UTC 2024 - 63.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/StringConversionUtilTest.java
assertEquals("", StringConversionUtil.fromWindowsMapping("")); assertEquals("abc 123", StringConversionUtil.fromWindowsMapping("abc 123")); assertEquals("abc\uFF5E\u2225\uFF0D\uFFE0\uFFE1\uFFE2", StringConversionUtil.fromWindowsMapping("abc\u301C\u2016\u2212\u00A2\u00A3\u00AC")); } /** * @throws Exception */ public void testToWindowsMapping() throws Exception {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.7K bytes - Viewed (0) -
api/go1.txt
pkg bytes, method (*Buffer) ReadString(uint8) (string, error) pkg bytes, method (*Buffer) Reset() pkg bytes, method (*Buffer) String() string pkg bytes, method (*Buffer) Truncate(int) pkg bytes, method (*Buffer) UnreadByte() error pkg bytes, method (*Buffer) UnreadRune() error pkg bytes, method (*Buffer) Write([]uint8) (int, error) pkg bytes, method (*Buffer) WriteByte(uint8) error pkg bytes, method (*Buffer) WriteRune(int32) (int, error)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.10.md
* Get public IP for Azure vmss nodes. ([#68498](https://github.com/kubernetes/kubernetes/pull/68498), [@feiskyer](https://github.com/feiskyer)) * adjusted http/2 buffer sizes for apiservers to prevent starvation issues between concurrent streams ([#67902](https://github.com/kubernetes/kubernetes/pull/67902), [@liggitt](https://github.com/liggitt))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 341.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
} WriterThread w = new WriterThread(); w.setDaemon(true); try { w.start(); // use commonly acceptable buffer size int bsize = Math.min(sh.getReceiveBufferSize() - 70, dh.getSendBufferSize() - 70); byte[][] b = new byte[2][bsize]; copyRecursive(dest, b, bsize, w, sh, dh);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
common-protos/k8s.io/api/core/v1/generated.proto
// b: [ 10.10.1.1:309, 10.10.2.2:309 ] message EndpointSubset { // IP addresses which offer the related ports that are marked as ready. These endpoints // should be considered safe for load balancers and clients to utilize. // +optional repeated EndpointAddress addresses = 1; // IP addresses which offer the related ports but are not currently marked as ready
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 255.8K bytes - Viewed (0) -
test-site/activator-launch-1.3.2.jar
public abstract void appendAll(scala.collection.TraversableOnce); } scala/collection/mutable/Buffer$.class package scala.collection.mutable; public final synchronized class Buffer$ extends scala.collection.generic.SeqFactory { public static final Buffer$ MODULE$; public static void <clinit>(); public final scala.collection.generic.CanBuildFrom canBuildFrom(); public final Builder newBuilder(); private void Buffer$(); } scala/collection/mutable/ArrayOps.class package scala.collection.mutable; public abstract...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/StringConversionUtil.java
public static final char FULLWIDTH_CENT_SIGN = '\uFFE0'; /** POUND SIGN */ public static final char POUND_SIGN = '\u00A3'; /** FULLWIDTH POUND SIGN */ public static final char FULLWIDTH_POUND_SIGN = '\uFFE1'; /** NOT SIGN */ public static final char NOT_SIGN = '\u00AC'; /** FULLWIDTH NOT SIGN */ public static final char FULLWIDTH_NOT_SIGN = '\uFFE2'; /** * 文字列に変換します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.5K bytes - Viewed (0)