Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isDevelopmentHere (0.35 sec)

  1. 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)
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  2. 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());
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
Back to top