- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 179 for initialisation (0.22 sec)
-
src/main/java/jcifs/config/BaseConfiguration.java
* Constructs a BaseConfiguration with default settings * * @throws CIFSException if configuration initialization fails */ protected BaseConfiguration() throws CIFSException { this(false); } /** * Constructs a BaseConfiguration with optional default initialization * * @param initDefaults * whether to initialize defaults based on other settings
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java
@BeforeEach public void setUp() { MockitoAnnotations.openMocks(this); } @Test public void testConstructorInitializesFields() { // Test constructor initialization with proper expectations String pipeName = "\\\\pipe\\testPipe"; TransWaitNamedPipe pipe = new TransWaitNamedPipe(pipeName); // Verify the name is set correctly
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
* This client supports operations on object storage systems compatible with S3 protocol. * * <p>This client requires the following initialization parameters: * <ul> * <li>endpoint - The URL of the MinIO server</li> * <li>accessKey - The access key for authentication</li> * <li>secretKey - The secret key for authentication</li>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17.9K bytes - Viewed (2) -
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
* @param auth the NTLM authentication credentials * @throws UnknownHostException if the host cannot be resolved * @throws MalformedURLException if the URL is malformed * @throws DcerpcException if DCERPC initialization fails */ public DcerpcPipeHandle(String url, final NtlmPasswordAuthentication auth) throws UnknownHostException, MalformedURLException, DcerpcException { binding = DcerpcHandle.parseBinding(url);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
// Initialize without container emptyGenerator = new EmptyGenerator(); // Note: isTarget method requires FessConfig from ComponentUtil // which needs container initialization. // We can only test that the method can be called without crashing // when proper conditions are not met. Map<String, Object> docMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
transaction = new TestSmbComNtTransaction(mockConfig, SmbComNtTransaction.NT_TRANSACT_QUERY_SECURITY_DESC); } @Test @DisplayName("Test constructor initialization with NT_TRANSACT_QUERY_SECURITY_DESC") void testConstructorInitialization() { // Verify that the transaction is properly initialized
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
assertNotNull(validator); // Test initialize method doesn't throw exception validator.initialize(null); // Test that validator can be used after initialization assertTrue(validator.isValid(null, null)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java
public void tearDown() throws Exception { if (originalFessConfig != null) { ComponentUtil.setFessConfig(originalFessConfig); } super.tearDown(); } // Test basic initialization public void test_hookInitialization() { assertNotNull(apiFailureHook); } // Test API result status codes public void test_apiResultStatusCodes() { // Test OK status
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
assertTrue(result2.startsWith("FessUserTimeZoneProcessProvider:{")); // But different hash codes assertFalse(result1.equals(result2)); } // Test static field initialization public void test_centralTimeZone_initialization() { // Verify that centralTimeZone is properly initialized assertNotNull(FessUserTimeZoneProcessProvider.centralTimeZone);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaProvider.java
ensureInitialized(); return new DisniMemoryRegion(buffer, access, endpoint); } /** * Initialize DiSNI components if not already initialized * * @throws IOException if initialization fails */ private void ensureInitialized() throws IOException { if (!initialized) { try { // In a real implementation, this would initialize DiSNI:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.2K bytes - Viewed (0)