- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getBatchLimit (0.18 sec)
-
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
* @see jcifs.internal.CommonServerMessageBlockResponse#getNextResponse() */ @Override public ServerMessageBlock getNextResponse () { return this.andx; } protected int getBatchLimit ( Configuration cfg, byte cmd ) { /* * the default limit is 0 batched messages before this * one, meaning this message cannot be batched. */ return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Nov 28 10:56:27 UTC 2022 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
public byte[] getMachineId () { return this.machineId; } /** * {@inheritDoc} * * @see jcifs.Configuration#getBatchLimit(java.lang.String) */ @Override public int getBatchLimit ( String cmd ) { Integer set = this.batchLimits.get(cmd); if ( set != null ) { return set; } set = doGetBatchLimit(cmd);
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
*/ boolean isIgnoreCopyToException (); /** * @param cmd * @return the batch limit for the given command */ int getBatchLimit ( String cmd ); /** * * Property <tt>jcifs.smb.client.notify_buf_size</tt> (int, default 1024) * * @return the size of the requested server notify buffer */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)