Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isFrameworkDebug (0.56 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

            // Test getEnvironmentTitle
            assertEquals("Local Development", fessEnv.getEnvironmentTitle());
    
            // Test getFrameworkDebug and isFrameworkDebug
            assertEquals("false", fessEnv.getFrameworkDebug());
            assertFalse(fessEnv.isFrameworkDebug());
    
            // Test getTimeAdjustTimeMillis and getTimeAdjustTimeMillisAsLong
            assertEquals("0", fessEnv.getTimeAdjustTimeMillis());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * comment: Does it enable the Framework internal debug? (true only when emergency)
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isFrameworkDebug();
    
        /**
         * Get the value for the key 'time.adjust.time.millis'. <br>
         * The value is, e.g. 0 <br>
         * comment: <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

            // this configuration is on sea_env.properties because it has no influence to production
            // even if you set true manually and forget to set false back
            direction.directFrameworkDebug(fessConfig.isFrameworkDebug()); // basically false
    
            // you can add your own process when your application is booting or closing
            direction.directCurtainBefore(createCurtainBeforeHook());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top