- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getBufferCacheSize (0.15 sec)
-
src/main/java/jcifs/smb/BufferCacheImpl.java
private final int bufferSize; private int freeBuffers = 0; /** * * @param cfg */ public BufferCacheImpl ( Configuration cfg ) { this(cfg.getBufferCacheSize(), cfg.getMaximumBufferSize()); } /** * @param maxBuffers * @param maxSize * */ public BufferCacheImpl ( int maxBuffers, int maxSize ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jan 24 11:40:34 UTC 2021 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getTransactionBufferSize(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getBufferCacheSize() */ @Override public int getBufferCacheSize () { return this.delegate.getBufferCacheSize(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getListCount() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
return this.transactionBufferSize; } @Override public int getMaximumBufferSize () { return this.maximumBufferSize; } @Override public int getBufferCacheSize () { return this.bufferCacheSize; } @Override public int getListCount () { return this.smbListCount; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
int getTransactionBufferSize (); /** * * Property <tt>jcifs.smb.maxBuffers</tt> (int, default 16) * * @return number of buffers to keep in cache */ int getBufferCacheSize (); /** * * Property <tt>jcifs.smb.client.listCount</tt> (int, default 200) * * @return maxmimum number of elements to request in a list request */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)