- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 500 for Initialize (1.35 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
try { emptyGenerator.isTarget(docMap); } catch (IllegalStateException e) { // Expected when container is not initialized assertTrue(e.getMessage().contains("Not initialized")); } } public void test_getName() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Test default name (null)
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/org/codelibs/fess/validation/CustomSizeValidatorTest.java
final CustomSize annotation = createBasicAnnotation(); try { validator.initialize(annotation); assertTrue("Initialize should complete without exception", true); } catch (final Exception e) { fail("Initialize should not throw exception with valid annotation: " + e.getMessage()); } }
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/dcerpc/ndr/NdrLongTest.java
assertEquals(positiveValue, ndrLongPositive.value, "Constructor should correctly initialize with a positive value."); // Test case 2: Negative value int negativeValue = -54321; NdrLong ndrLongNegative = new NdrLong(negativeValue); assertEquals(negativeValue, ndrLongNegative.value, "Constructor should correctly initialize with a negative value."); // Test case 3: Zero value int zeroValue = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.2K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/publicsuffix/AssetPublicSuffixList.kt
"Platform applicationContext not initialized. " + "Possibly running Android unit test without Robolectric. " + "Android tests should run with Robolectric " + "and call OkHttp.initialize before test", ) } else { throw IOException( "Platform applicationContext not initialized. " + "Startup Initializer possibly disabled, " +
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java
if (!initialized) { initialize(); } BeanDesc beanDesc = beanDescCache.get(clazz); if (beanDesc == null) { beanDesc = putIfAbsent(beanDescCache, clazz, new BeanDescImpl(clazz)); } return beanDesc; } /** * Performs initialization. */ public static void initialize() {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaProvider.java
} /** * 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) -
src/test/java/org/codelibs/fess/query/QueryCommandTest.java
} }; ComponentUtil.setFessConfig(fessConfig); // Initialize QueryFieldConfig QueryFieldConfig queryFieldConfig = new QueryFieldConfig(); queryFieldConfig.init(); ComponentUtil.register(queryFieldConfig, "queryFieldConfig"); // Initialize QueryParser QueryParser queryParser = new QueryParser(); queryParser.init();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/core/message/MessageFormatter.java
return new String(buffer); } /** * Initializes the class. */ protected static synchronized void initialize() { if (!initialized) { DisposableUtil.add(() -> { ResourceBundle.clearCache(); initialized = false; }); initialized = true; } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrHyperTest.java
class NdrHyperTest { @Mock private NdrBuffer mockNdrBuffer; @BeforeEach void setUp() { // Initialize mocks before each test MockitoAnnotations.openMocks(this); } @Test void testConstructorAndGetValue() { // Test that the constructor correctly initializes the value long expectedValue = 123456789012345L; NdrHyper ndrHyper = new NdrHyper(expectedValue);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/StaticJAASConfiguration.java
* */ class StaticJAASConfiguration extends Configuration { private Map<String, ?> options; /** * Initialize a static JAAS configuration with default settings */ public StaticJAASConfiguration() { this.options = new HashMap<>(); } /** * Initialize a static JAAS configuration with custom settings * * @param options */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.9K bytes - Viewed (0)