- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for maxBufferSize (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
} /** * Sets the maximum buffer size for this transaction * @param maxBufferSize * the maxBufferSize to set */ public final void setMaxBufferSize(final int maxBufferSize) { this.maxBufferSize = maxBufferSize; } /** * Sets the maximum data count for this transaction * @param maxDataCountCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 17.3K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
int maxParameterCount; int maxDataCount = DEFAULT_MAX_DATA_COUNT; byte maxSetupCount; int timeout = 0; int setupCount = 1; byte subCommand; String name = ""; int maxBufferSize; // set in SmbTransport.sendTransaction() before nextElement called byte[] txn_buf; SmbComTransaction() { maxParameterCount = 1024; primarySetupOffset = PRIMARY_SETUP_OFFSET;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 10.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
return false; } final int maxBufferSize = tc.getConfig().getTransactionBufferSize(); this.maxReadSize = Math.min(maxBufferSize - Smb2ReadResponse.OVERHEAD, Math.min(tc.getConfig().getReceiveBufferSize(), this.maxReadSize)) & ~0x7; this.maxWriteSize =Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
this.maxMpxCount = 1; } this.snd_buf_size = Math.min(this.snd_buf_size, this.server.maxBufferSize); this.recv_buf_size = Math.min(this.recv_buf_size, this.server.maxBufferSize); this.tx_buf_size = Math.min(this.tx_buf_size, this.server.maxBufferSize); this.capabilities &= this.server.scapabilities;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
CONNECTIONS.add(0, conn); } return conn; } class ServerData { byte flags; int flags2; int maxMpxCount; int maxBufferSize; int sessionKey; int capabilities; String oemDomainName; int securityMode; int security; boolean encryptedPasswords; boolean signaturesEnabled;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.8K bytes - Click Count (0) -
internal/grid/types.go
} val, bytes, err := msgp.ReadBytesZC(bytes) if err != nil { return bytes, err } if cap(*b) >= len(val) { *b = (*b)[:len(val)] copy(*b, val) } else { if cap(*b) == 0 && len(val) <= maxBufferSize { *b = GetByteBufferCap(len(val)) } else { PutByteBuffer(*b) *b = make([]byte, 0, len(val)) } in := *b in = append(in[:0], val...) *b = in } return bytes, nil }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 15.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
serverData.maxBufferSize = Integer.MAX_VALUE; serverData.sessKey = Integer.MAX_VALUE; serverData.scapabilities = Integer.MAX_VALUE; assertEquals(Integer.MAX_VALUE, serverData.sflags2); assertEquals(Integer.MAX_VALUE, serverData.smaxMpxCount); assertEquals(Integer.MAX_VALUE, serverData.maxBufferSize); assertEquals(Integer.MAX_VALUE, serverData.sessKey);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17K bytes - Click Count (0)