- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for allowChain (0.08 sec)
-
src/main/java/jcifs/internal/smb2/Smb2CancelRequest.java
return null; } /** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#allowChain(jcifs.internal.CommonServerMessageBlockRequest) */ @Override public boolean allowChain ( CommonServerMessageBlockRequest next ) { return false; } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
return getAsyncId() != 0; } /** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#allowChain(jcifs.internal.CommonServerMessageBlockRequest) */ @Override public boolean allowChain ( CommonServerMessageBlockRequest next ) { return getConfig().isAllowCompound(getClass().getSimpleName()) && getConfig().isAllowCompound(next.getClass().getSimpleName());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java
/** * @return create cancel request */ CommonServerMessageBlockRequest createCancel (); /** * @param next * @return whether to allow chaining */ boolean allowChain ( CommonServerMessageBlockRequest next ); /** * @param t */ void setTid ( int t ); /** * * @return custom response timeout for this request */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
return null; } /** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#allowChain(jcifs.internal.CommonServerMessageBlockRequest) */ @Override public boolean allowChain ( CommonServerMessageBlockRequest next ) { return false; } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
String.format("%s costs %d avail %d (%s)", chain.getClass().getName(), cost, this.credits.availablePermits(), this.name)); } if ( ( next == null || chain.allowChain(next) ) && totalSize + size < maxSize && this.credits.tryAcquire(cost) ) { totalSize += size; last = chain; chain = next; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)