- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 155 for initialization (0.07 sec)
-
android/guava/src/com/google/common/cache/Striped64.java
/** Table of cells. When non-null, size is a power of 2. */ transient volatile Cell @Nullable [] cells; /** * Base value, used mainly when there is no contention, but also as a fallback during table * initialization races. Updated via CAS. */ transient volatile long base; /** Spinlock (locked via CAS) used when resizing and/or creating Cells. */ transient volatile int busy;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jan 15 22:17:15 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmContextTest.java
private final String password = "testPassword"; private final String workstation = "TEST_WORKSTATION"; @BeforeEach void setUp() { // MockitoExtension handles mock initialization // Type1Message.getDefaultWorkstation() is static, so we can't easily mock it without PowerMock. // We will proceed assuming it returns a predictable value or handle it as is. } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java
public void tearDown() throws Exception { if (originalFessConfig != null) { ComponentUtil.setFessConfig(originalFessConfig); } super.tearDown(); } // Test creator initialization public void test_creatorInitialization() { assertNotNull(creator); } // Test with different mail configurations public void test_mailConfiguration() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
} public void test_initialize_withValidParameters() { final CustomSize annotation = createBasicAnnotation(); validator.initialize(annotation); // Test that initialization completes without exception } public void test_classStructure() { // Test that the class exists and has the expected structure
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/http/NetworkExplorerTest.java
import jcifs.SmbResourceLocator; import jcifs.context.SingletonContext; import jcifs.smb.NtlmPasswordAuthentication; import jcifs.smb.SmbFile; /** * Unit tests for the NetworkExplorer servlet. * Tests initialization, authentication handling, and servlet lifecycle. */ @ExtendWith(MockitoExtension.class) @MockitoSettings(strictness = Strictness.LENIENT) class NetworkExplorerTest { private NetworkExplorer networkExplorer;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
// Test with concrete implementation String concreteDomain = concreteImplementation.getDomain(); // Should be DOMAIN based on our initialization assertEquals("DOMAIN", concreteDomain); } @Test @DisplayName("Should get link") void testGetLink() { String link = "\\\\server\\share\\link";
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/http/NtlmServletTest.java
* @throws CIFSException */ @BeforeEach void setUp() throws CIFSException { ntlmServlet = new TestNtlmServlet(); // Mock ServletConfig to provide initialization parameters Map<String, String> initParams = new HashMap<>(); initParams.put("jcifs.smb.client.domain", "TEST_DOMAIN"); initParams.put("jcifs.http.domainController", "dc.test.domain");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
* and ending with ".txt". */ public SynonymCreator() { super("synonym.*\\.txt"); } /** * Registers this creator with the dictionary manager upon initialization. * This method is annotated with {@link PostConstruct} to be executed after * dependency injection is complete. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
// Create instance with SMB_INFO_ALLOCATION trans2QueryFSInfo = new Trans2QueryFSInformation(config, FileSystemInformation.SMB_INFO_ALLOCATION); // Verify initialization assertNotNull(trans2QueryFSInfo); assertEquals(ServerMessageBlock.SMB_COM_TRANSACTION2, trans2QueryFSInfo.getCommand());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
* Sets up encoding mappings and default encoding from filter configuration. * * @param config the filter configuration containing initialization parameters * @throws ServletException if an error occurs during initialization */ @Override public void init(final FilterConfig config) throws ServletException { servletContext = config.getServletContext();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0)