- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 355 for mbuf (0.01 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
buf[6] = 2; // parameterCount low buf[7] = 0; // high buf[8] = 4; // parameterOffset low buf[9] = 0; // high buf[10] = 6; // parameterDisplacement low buf[11] = 0; // high buf[12] = 7; // dataCount low buf[13] = 0; // high buf[14] = 8; // dataOffset low buf[15] = 0; // high buf[16] = 9; // dataDisplacement low buf[17] = 0; // high
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
cmd/api-headers.go
} // Encodes the response headers into XML format. func encodeResponse(response any) []byte { var buf bytes.Buffer buf.WriteString(xml.Header) if err := xml.NewEncoder(&buf).Encode(response); err != nil { bugLogIf(GlobalContext, err) return nil } return buf.Bytes() } // Use this encodeResponseList() to support control characters // this function must be used by only ListObjects() for objects
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
final List<AnalyzeToken> tokens = new ArrayList<>(); final StringBuilder buf = new StringBuilder(maxAnalyzedContentLength); for (final String t : text.split("\\s")) { buf.append(t).append(' '); if (buf.length() > maxAnalyzedContentLength) { try { tokens.addAll(analyzer.analyze(buf.toString().trim(), field, lang));
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java
Trans2QueryFSInformation cmd = new Trans2QueryFSInformation(5); byte[] buf = newBuffer(10); int written = cmd.writeSetupWireFormat(buf, 0); assertEquals(2, written, "setup packet should write 2 bytes"); assertEquals(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION, buf[0], "first byte should be subCommand"); assertEquals((byte) 0x00, buf[1], "second byte should be zero"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/bufio/bufio.go
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 22K bytes - Viewed (0) -
src/archive/tar/fuzz_test.go
files := []file{} for { hdr, err := r.Next() if err == io.EOF { break } if err != nil { return } buf := bytes.NewBuffer(nil) if _, err := io.Copy(buf, r); err != nil { continue } files = append(files, file{header: hdr, content: buf.Bytes()}) } // If we were unable to read anything out of the archive don't // bother trying to roundtrip it. if len(files) == 0 {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Jan 13 18:06:33 UTC 2022 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
Encdec.enc_uint32le(len + 1, this.buf, i); i += 4; Encdec.enc_uint32le(0, this.buf, i); i += 4; Encdec.enc_uint32le(len + 1, this.buf, i); i += 4; System.arraycopy(Strings.getUNIBytes(s), 0, this.buf, i, len * 2); i += len * 2; this.buf[i] = (byte) '\0'; i++; this.buf[i++] = (byte) '\0'; advance(i - this.index);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/ACE.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
*/ public static void appendHex(final StringBuilder buf, final int i) { buf.append(Integer.toHexString(i >> 24 & 0xff)); buf.append(Integer.toHexString(i >> 16 & 0xff)); buf.append(Integer.toHexString(i >> 8 & 0xff)); buf.append(Integer.toHexString(i & 0xff)); } /** * Converts an underscore-separated string to camel case. * <p> * Usage example: * </p>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2FindNext2Test.java
byte[] buf = new byte[16]; // When/Then assertEquals(0, next.readSetupWireFormat(buf, 0, buf.length)); assertEquals(0, next.readParametersWireFormat(buf, 0, buf.length)); assertEquals(0, next.readDataWireFormat(buf, 0, buf.length)); assertEquals(0, next.writeDataWireFormat(buf, 0)); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.9K bytes - Viewed (0)