- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 492 for custom (0.05 sec)
-
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/ConscryptSocketAdapter.kt
else -> null // No TLS extensions if the socket class is custom. } override fun configureTlsExtensions( sslSocket: SSLSocket, hostname: String?, protocols: List<Protocol>, ) { // No TLS extensions if the socket class is custom. if (matchesSocket(sslSocket)) { // Enable session tickets. Conscrypt.setUseSessionTickets(sslSocket, true)Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
assertNotNull(ioException); assertTrue(ioException.getCause() instanceof java.io.IOException); // Test with custom exception Throwable customCause = new FessSystemException("Custom Fess error"); GsaConfigException customException = new GsaConfigException("GSA custom error", customCause); assertNotNull(customException); assertTrue(customException.getCause() instanceof FessSystemException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/TrustedListenableFutureTaskTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbExceptionTest.java
*/ @Test @DisplayName("String constructor sets NT_STATUS_UNSUCCESSFUL status") void testStringConstructor() { SmbException ex = new SmbException("custom message"); assertEquals("custom message", ex.getMessage()); assertEquals(NtStatus.NT_STATUS_UNSUCCESSFUL, ex.getNtStatus()); } /** * Verify that the message + rootCause constructor stores the root. */Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/SmbTreeTest.java
/** * Test for unwrap() method with matching type. * Verifies that unwrap returns the correct instance when the type matches. */ @Test void testUnwrap_withMatchingType() { // Create a custom SmbTree type for testing CustomSmbTree customTree = mock(CustomSmbTree.class); when(smbTree.unwrap(CustomSmbTree.class)).thenReturn(customTree); CustomSmbTree result = smbTree.unwrap(CustomSmbTree.class);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java
* It converts Unicode domain names to ASCII Compatible Encoding (ACE) using the * {@link java.net.IDN} class. * * <p>This class allows setting a custom flag for the IDN conversion and a custom * encoding for URL decoding.</p> * * <p>Example usage:</p> * <pre> * {@code * IdnDnsResolver resolver = new IdnDnsResolver(); * resolver.setFlag(IDN.ALLOW_UNASSIGNED);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/iam/identity-management-plugin.md
# Identity Management Plugin Guide [](https://slack.minio.io) ## Introduction
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 27 00:58:09 UTC 2022 - 4.2K bytes - Viewed (0) -
src/archive/zip/register.go
} // RegisterDecompressor allows custom decompressors for a specified method ID. // The common methods [Store] and [Deflate] are built in. func RegisterDecompressor(method uint16, dcomp Decompressor) { if _, dup := decompressors.LoadOrStore(method, dcomp); dup { panic("decompressor already registered") } } // RegisterCompressor registers custom compressors for a specified method ID.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/context/SingletonContextTest.java
} @Test void testInitWithCustomProperties() throws CIFSException { // Test successful initialization with custom properties Properties props = new Properties(); props.setProperty("jcifs.smb.client.nativeOs", "CustomOS"); props.setProperty("jcifs.smb.client.nativeLanMan", "CustomLanman"); assertDoesNotThrow(() -> SingletonContext.init(props));Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/RequestWithFileIdTest.java
assertDoesNotThrow(() -> request.setFileId(alternating), "Should handle alternating pattern file ID"); } @Test @DisplayName("Should create custom implementation of RequestWithFileId") void testCustomImplementation() { // Given - custom implementation class CustomRequestWithFileId implements RequestWithFileId { private byte[] fileId; private int setCount = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0)