- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for isIntermediate (0.08 sec)
-
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
} @Test @DisplayName("Should check if intermediate") void testIsIntermediate() { // Test with mock when(mockReferralData.isIntermediate()).thenReturn(false); assertFalse(mockReferralData.isIntermediate()); verify(mockReferralData, times(1)).isIntermediate(); // Test with concrete implementation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
} @Test @DisplayName("Should get and set intermediate flag") void testIntermediate() { assertFalse(referralData.isIntermediate()); referralData.intermediate(); assertTrue(referralData.isIntermediate()); } } @Nested @DisplayName("Cache Management Tests") class CacheManagementTests {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
*/ boolean isResolveHashes(); /** * Check if this referral needs to be resolved further * * @return whether this refrral needs to be resolved further */ boolean isIntermediate(); /** * Combine this referral with another to form a chain * * @param next the referral to combine with * @return new referral, combining a chain of referrals */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
} /** * Mark this referral as intermediate (requires further resolution) */ public void intermediate() { this.intermediate = true; } /** * @return the intermediate */ @Override public boolean isIntermediate() { return this.intermediate; } @Override public String toString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
} } } if (dr == null && path != null) { dr = getStandaloneCached(domain, root, path, now); } if (dr != null && dr.isIntermediate()) { dr = resolveIntermediates(tf, path, depthLimit, dr); } return dr; } /** * @param tf * @param path * @param depthLimit
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
GsaConfigException exception = new GsaConfigException("Top level GSA error", intermediateCause); assertNotNull(exception); assertEquals("Top level GSA error", exception.getMessage()); // Check first level cause assertNotNull(exception.getCause()); assertEquals("Intermediate problem", exception.getCause().getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/RuntimeCIFSExceptionTest.java
void testExceptionChaining() { // Given Exception rootCause = new IllegalStateException("Root error"); RuntimeCIFSException intermediateCause = new RuntimeCIFSException("Intermediate", rootCause); // When RuntimeCIFSException finalException = new RuntimeCIFSException("Final error", intermediateCause); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
Exception intermediateCause = new IllegalStateException("Intermediate cause", rootCause); ScriptEngineException exception = new ScriptEngineException("Top level error", intermediateCause); assertEquals("Top level error", exception.getMessage()); assertEquals(intermediateCause, exception.getCause()); assertEquals("Intermediate cause", exception.getCause().getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
* * <p>This uses an efficient binary recursive algorithm to compute the factorial with balanced * multiplies. It also removes all the 2s from the intermediate products (shifting them back in at * the end). * * @throws IllegalArgumentException if {@code n < 0} */ public static BigInteger factorial(int n) { checkNonNegative("n", n);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
// Test constructor with nested exceptions Throwable rootCause = new IllegalStateException("Root cause"); Throwable intermediateCause = new RuntimeException("Intermediate cause", rootCause); String message = "Top level error"; SearchEngineClientException exception = new SearchEngineClientException(message, intermediateCause); assertNotNull(exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0)