- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 383 for chain (0.02 sec)
-
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
Exception level1 = new Exception("Level 1: Authentication service error", level2); SsoProcessException topLevel = new SsoProcessException("SSO process failed", level1); // Verify the chain assertEquals("SSO process failed", topLevel.getMessage()); assertEquals(level1, topLevel.getCause()); assertEquals("Level 1: Authentication service error", topLevel.getCause().getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
} public void test_exceptionInheritance() { // Test exception inheritance hierarchy CommandExecutionException exception = new CommandExecutionException("Test"); // Check inheritance chain assertTrue(exception instanceof CommandExecutionException); assertTrue(exception instanceof FessSystemException); assertTrue(exception instanceof RuntimeException);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
* * @param tc the CIFS context containing configuration and credentials * @param negotiated the negotiation response containing server capabilities * @param andx the next command in the AndX chain, or null * @param cred the authentication credentials to use for the session * @throws SmbException if an SMB protocol error occurs * @throws GeneralSecurityException if a security error occurs during authenticationRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
assertNotNull(result); assertTrue(result.contains("ScriptEngineException")); assertTrue(result.contains(message)); } public void test_withComplexCauseChain() { // Test with a chain of exceptions Exception rootCause = new NullPointerException("Root cause"); Exception intermediateCause = new IllegalStateException("Intermediate cause", rootCause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java
* @param shareAccess the share access mode * @param extFileAttributes the extended file attributes * @param createOptions the create options * @param andx the next command in the chain */ public SmbComNTCreateAndX(final Configuration config, final String name, final int flags, final int access, final int shareAccess,Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java
assertEquals(threadCount * operationsPerThread, transformer.getGetDataCallCount()); } /** * Test transformer chain */ public void test_transformerChain() { // Create chain of transformers List<Transformer> transformerChain = new ArrayList<>(); transformerChain.add(new TestTransformer("first"));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 28K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
* article on <a href="https://github.com/google/guava/wiki/ListenableFutureExplained">{@code * ListenableFuture}</a>. * * <p>The main purpose of {@code ListenableFuture} is to help you chain together a graph of * asynchronous operations. You can chain them together manually with calls to methods like {@link * Futures#transform(ListenableFuture, Function, Executor) Futures.transform}, but you will often
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 64.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/transport/TransportExceptionTest.java
assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } @Test @DisplayName("Should preserve message through exception chain") void testMessagePreservation() { String originalMessage = "Original error"; TransportException original = new TransportException(originalMessage);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
* @param access the desired access mode * @param shareAccess the share access mode * @param flags the open flags * @param fileAttributes the file attributes * @param andx the next command in the chain */ public SmbComOpenAndX(final Configuration config, final String fileName, final int access, final int shareAccess, final int flags, final int fileAttributes, final ServerMessageBlock andx) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java
* @param b the data buffer containing bytes to write * @param off the offset in the buffer where data starts * @param len the number of bytes to write * @param andx the next command in the AndX chain, or null */ public SmbComWriteAndX(final Configuration config, final int fid, final long offset, final int remaining, final byte[] b, final int off, final int len, final ServerMessageBlock andx) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0)