- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 624 for initialize (0.36 sec)
-
src/test/java/jcifs/http/NtlmServletTest.java
* Verifies that configuration properties are properly validated during initialization. */ @Test void testInitWithCIFSException() { // Test with valid configuration - should initialize successfully Map<String, String> validParams = new HashMap<>(); validParams.put("jcifs.smb.client.domain", "TEST_DOMAIN"); validParams.put("jcifs.smb.client.soTimeout", "300000");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/AndroidPlatform.kt
} /** * A trust manager for Android applications that customize the trust manager. * * This class exploits knowledge of Android implementation details. This class is potentially * much faster to initialize than [BasicTrustRootIndex] because it doesn't need to load and * index trusted CA certificates. */ internal data class CustomTrustRootIndex( private val trustManager: X509TrustManager,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu May 29 16:52:38 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
public DictionaryManager() { // Default constructor } /** * Initializes the dictionary manager after construction. * Sets up the relationship between this manager and all registered creators. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } creatorList.forEach(creator -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
public class FuzzyQueryCommandTest extends QueryTestBase { private FuzzyQueryCommand fuzzyQueryCommand; @Override protected void setUpChild() throws Exception { // Initialize and register FuzzyQueryCommand fuzzyQueryCommand = new FuzzyQueryCommand(); fuzzyQueryCommand.register(); } // Test getQueryClassName method public void test_getQueryClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java
@BeforeEach void setUp() { MockitoAnnotations.openMocks(this); response = new Smb2FlushResponse(mockConfig); } @Test @DisplayName("Constructor should initialize with Configuration") void testConstructor() { // Given & When Smb2FlushResponse flushResponse = new Smb2FlushResponse(mockConfig); // Then assertNotNull(flushResponse);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
* has been constructed and all dependencies have been injected. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } load(); } /** * Retrieves all available related content configurations from the data store.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
private MsrpcDfsRootEnum dfsRootEnum; @BeforeEach void setUp() { dfsRootEnum = new MsrpcDfsRootEnum(TEST_SERVER); } @Test @DisplayName("Constructor should initialize all fields correctly") void testConstructorInitialization() { // Verify level is set to 200 for DFS root enumeration assertEquals(200, dfsRootEnum.level); // Verify DCE/RPC message properties
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
try { krbNameOid = new Oid("1.2.840.113554.1.2.2.1"); krbMechOid = new Oid("1.2.840.113554.1.2.2"); } catch (Exception e) { log.error("Failed to initialize kerberos OIDs", e); } JGSS_KRB5_NAME_OID = krbNameOid; JGSS_KRB5_MECH_OID = krbMechOid; } private final GSSContext gssContext; private final GSSName clientName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13.5K bytes - Viewed (1) -
docs/changelogs/changelog_2x.md
<dependency> <groupId>com.squareup.okio</groupId> <artifactId>okio</artifactId> <version>1.6.0</version> </dependency> ``` * New: `Cache.initialize()`. Call this on a background thread to eagerly initialize the response cache. * New: Fold `MockWebServerRule` into `MockWebServer`. This makes it easier to write JUnit tests with `MockWebServer`. The `MockWebServer` library now
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0)