- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for isIntermediate (0.25 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) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt
* intermediate. This is business as usual. * * ``` * pinnedRoot (trusted by CertificatePinner) * -> pinnedIntermediate (trusted by CertificatePinner) * -> realVictim * ``` * * The attacker compromises a CA. They take the public key from an intermediate certificate
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 24.3K bytes - Viewed (1) -
okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt
.Builder() .certificateAuthority(1) .build() val intermediate = HeldCertificate .Builder() .certificateAuthority(0) .signedBy(root) .build() val certificate = HeldCertificate .Builder() .signedBy(intermediate) .build() val handshakeCertificates = HandshakeCertificates
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.2K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt
* certificate and its private key). The certificate's subject alternative names must match the * server's hostname. The server must also have is a (possibly-empty) chain of intermediate * certificates to establish trust from a root certificate to the server's certificate. The root * certificate is not included in this chain.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 8.4K 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)