- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 178 for chaining (0.1 sec)
-
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
assertNotNull(resp); assertSame(mockConfig, resp.getConfig()); } } @Nested @DisplayName("Response Chaining Tests") class ResponseChainingTests { @Test @DisplayName("Should return next response") void testGetNextResponse() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * Base class for SMB1 AndX (chained) command messages. * This class extends ServerMessageBlock to support SMB1 command chaining, where multiple * related commands can be batched together in a single message for improved efficiency. */ public abstract class AndXServerMessageBlock extends ServerMessageBlock {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java
assertTrue(stackTraceOutput.contains("IOException")); assertTrue(stackTraceOutput.contains("IO error")); } /** * Test exception chaining */ public void test_exceptionChaining() { Exception level3 = new IllegalArgumentException("Level 3 - Root cause"); Exception level2 = new IllegalStateException("Level 2", level3);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 20K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
configWithBaseDelegate.isUseUnicode(); configWithBaseDelegate.getOemEncoding(); }, "Should work with BaseConfiguration delegate"); // Test chaining delegates DelegatingConfiguration chainedConfig = new DelegatingConfiguration(configWithBaseDelegate); assertDoesNotThrow(() -> { chainedConfig.getResponseTimeout();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
public void test_inheritance() { assertTrue(messages instanceof FessLabels); assertTrue(messages instanceof org.lastaflute.core.message.UserMessages); } // Test method chaining public void test_methodChaining() { String property1 = "prop1"; String property2 = "prop2"; String property3 = "prop3"; FessMessages result =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
assertEquals((byte) 'M', buffer[offset + 2]); assertEquals((byte) 'B', buffer[offset + 3]); } @Test @DisplayName("Should handle deep message chaining") void testDeepMessageChaining() { TestServerMessageBlock2[] messages = new TestServerMessageBlock2[10]; for (int i = 0; i < messages.length; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/FluentFuture.java
* .transform(ActivityService::isLoggedIn, threadPool) * .catching(RpcException.class, e -> false, directExecutor()); * } * * <h3>Alternatives</h3> * * <h4>Frameworks</h4> * * <p>When chaining together a graph of asynchronous operations, you will often find it easier to * use a framework. Frameworks automate the process, often adding features like monitoring, * debugging, and cancellation. Examples of frameworks include:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
* </p> * * <pre> * import static org.codelibs.core.beans.util.CopyOptionsUtil.*; * * copyBeanToBean(srcBean, destBean, excludeNull()); * </pre> * <p> * Multiple options can also be specified using method chaining. * </p> * * <pre> * copyBeanToBean(srcBean, destBean, excludeNull().dateConverter("date", "MM/dd")); * </pre> * * @author Kimura Satoshi * @author higa * @author shinsuke * @see CopyOptionsUtil
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.3K bytes - Viewed (0)