Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ObjectiveConfig (0.06 sec)

  1. src/test/java/org/codelibs/fess/query/QueryCommandTest.java

                {
                    // Force initialize the ObjectiveConfig's prop field using reflection
                    try {
                        java.lang.reflect.Field propField = org.lastaflute.core.direction.ObjectiveConfig.class.getDeclaredField("prop");
                        propField.setAccessible(true);
                        propField.set(this, new org.dbflute.helper.jprop.ObjectiveProperties("test"));
                    } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

                super();
                // Initialize the properties to avoid NullPointerException
                try {
                    java.lang.reflect.Field propField = org.lastaflute.core.direction.ObjectiveConfig.class.getDeclaredField("prop");
                    propField.setAccessible(true);
                    propField.set(this, new org.dbflute.helper.jprop.ObjectiveProperties("test.properties"));
                } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.lastaflute.core.direction.exception.ConfigPropertyNotFoundException;
    
    /**
     * Test for FessEnv
     * Note: Many tests are currently disabled due to ObjectiveConfig initialization issues
     * that require a full LastaFlute context
     */
    public class FessEnvTest extends UnitFessTestCase {
    
        private FessEnv.SimpleImpl fessEnv;
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

                try {
                    // Use reflection to initialize the internal properties structure
                    java.lang.reflect.Field propField =
                            org.lastaflute.core.direction.ObjectiveConfig.class.getDeclaredField("_javaPropertiesResult");
                    propField.setAccessible(true);
    
                    // Create a mock JavaPropertiesResult
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
Back to top