Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isDevelopmentHere (0.06 sec)

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

            // Test getLastaDiSmartDeployMode
            assertEquals("warm", fessEnv.getLastaDiSmartDeployMode());
    
            // Test getDevelopmentHere and isDevelopmentHere
            assertEquals("true", fessEnv.getDevelopmentHere());
            assertTrue(fessEnv.isDevelopmentHere());
    
            // Test getEnvironmentTitle
            assertEquals("Local Development", fessEnv.getEnvironmentTitle());
    
    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: Is development environment here? (used for various purpose, you should set false if unknown)
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isDevelopmentHere();
    
        /**
         * Get the value for the key 'environment.title'. <br>
         * The value is, e.g. Local Development <br>
         * comment: The title of environment (e.g. local or integration or production)
    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

        protected void prepareCoreDirection(final FwCoreDirection direction) {
            // this configuration is on fess_env.properties because this is true only when development
            direction.directDevelopmentHere(fessConfig.isDevelopmentHere());
    
            // titles of the application for logging are from configurations
            direction.directLoggingTitle(fessConfig.getDomainTitle(), fessConfig.getEnvironmentTitle());
    
    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