- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getBatchLimit (0.1 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.isIgnoreCopyToException(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getBatchLimit(java.lang.String) */ @Override public int getBatchLimit ( String cmd ) { return this.delegate.getBatchLimit(cmd); } /** * {@inheritDoc} * * @see jcifs.Configuration#isAllowCompound(java.lang.String) */
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/smb1/smb1/AndXServerMessageBlock.java
} AndXServerMessageBlock( ServerMessageBlock andx ) { if (andx != null) { this.andx = andx; andxCommand = andx.command; } } int getBatchLimit( byte command ) { /* 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: Fri Mar 22 21:10:40 UTC 2019 - 11.3K bytes - Viewed (0) -
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)