- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 179 for uninitialized (0.41 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
assertFalse(result1.equals(result2)); } // Test static field initialization public void test_centralTimeZone_initialization() { // Verify that centralTimeZone is properly initialized assertNotNull(FessUserTimeZoneProcessProvider.centralTimeZone); assertEquals(TimeZone.getDefault(), 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/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java
public static void shutdownAll() { throw new RuntimeException("Simulated exception during shutdown"); } } // Test to verify the logger field is properly initialized public void test_loggerFieldInitialization() throws Exception { // Use reflection to access the private logger field Field loggerField = FessCurtainFinallyHook.class.getDeclaredField("logger");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java
} }; // Should not throw exception invokerAssistant.toBeDisposable(process); } // Test static constants are properly initialized public void test_staticConstants() { // Test DEFAULT_CLIENT_INVOKE_NAMES String[] clientNames = ImplementedInvokerAssistant.DEFAULT_CLIENT_INVOKE_NAMES; assertNotNull(clientNames);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
} @Test @DisplayName("getOffset before any read - should return zero") void testOffsetInitiallyZero() { assertEquals(0L, response.getOffset(), "Offset should be initialized to 0"); } /* ------------------------------------------------------------------ */ /* 2. Parameter word reading - happy path & edge cases */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
} @Test void testSetOptionOtherKey() throws DcerpcException { dcerpcBinding.setOption("connect", "80"); assertNotNull(dcerpcBinding.getOptions(), "Options map should be initialized."); assertEquals("80", dcerpcBinding.getOptions().get("connect"), "Option value should be set correctly."); } @Test void testGetOptionEndpoint() throws DcerpcException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/StandardTable.java
* initialized by next() -- which initializes rowEntry, too. * * - rowEntry isn't cleared except below. If it was cleared below, then either * columnIterator.remove() would have failed above (if the user hasn't called next() since * then) or rowEntry would have been initialized by next() (as discussed above). */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 30.2K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/GraphBuilder.java
/** Returns a {@link GraphBuilder} for building undirected graphs. */ public static GraphBuilder<Object> undirected() { return new GraphBuilder<>(false); } /** * Returns a {@link GraphBuilder} initialized with all properties queryable from {@code graph}. * * <p>The "queryable" properties are those that are exposed through the {@link Graph} interface,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
*/ protected void setUpChild() throws Exception { // Default implementation does nothing } /** * Creates and registers a properly initialized FessConfig */ protected void setupBaseFessConfig() { ComponentUtil.setFessConfig(createBaseFessConfig()); } /** * Creates a base FessConfig implementation with common fields
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
assertEquals(SmbComTransaction.TRANS2_FIND_FIRST2, transaction.getSubCommand()); // Verify maxDataCount and maxParameterCount are initialized assertTrue(transaction.maxDataCount > 0); assertTrue(transaction.maxParameterCount > 0); } @Test @DisplayName("Test setMaxBufferSize") void testSetMaxBufferSize() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
void testConstructorInitialization() { // Verify that the transaction is properly initialized assertEquals(ServerMessageBlock.SMB_COM_NT_TRANSACT, transaction.getCommand()); // Verify that transaction is properly initialized assertNotNull(transaction); // Verify primary setup offset (should be 71 as per NTT_PRIMARY_SETUP_OFFSET)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)