Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for manager (0.37 sec)

  1. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String ACCESS_TOKEN_HELPER = "accessTokenHelper";
    
        private static final String AUTHENTICATION_MANAGER = "authenticationManager";
    
        private static final String THUMBNAIL_MANAGER = "thumbnailManager";
    
        private static final String SSO_MANAGER = "ssoManager";
    
        private static final String PERMISSION_HELPER = "permissionHelper";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java

        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new KuromojiFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new ProtwordsFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java

        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new CharMappingFile(id, path, timestamp).manager(dictionaryManager);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new SynonymFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/main/assemblies/files/service.bat

    goto:eof
    
    :doManagment
    set EXECUTABLE_MGR=%FESS_HOME%\bin\fess-service-mgr.exe
    "%EXECUTABLE_MGR%" //ES//%SERVICE_ID%
    if not errorlevel 1 goto managed
    echo Failed starting service manager for '%SERVICE_ID%'
    goto:eof
    :managed
    echo Successfully started service manager for '%SERVICE_ID%'.
    goto:eof
    
    :doRemove
    rem Remove the service
    "%EXECUTABLE%" //DS//%SERVICE_ID% %LOG_OPTS%
    if not errorlevel 1 goto removed
    Batch File
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/index.jsp

    								<li class="nav-item" data-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />">
    									<a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a>
    								</li>
    							</c:if>
    							<c:if test="${developmentMode}">
    								<li class="nav-item" data-toggle="tooltip" data-placement="left"
    									title="<la:message key="labels.development_mode_warning" />"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.9K bytes
    - Viewed (1)
  8. src/main/resources/fess_config.properties

    app.audit.log.format=
    
    # JVM options
    jvm.crawler.options=\
    -Djava.awt.headless=true\n\
    -Dfile.encoding=UTF-8\n\
    -Djna.nosys=true\n\
    -Djdk.io.permissionsUseCanonicalPath=true\n\
    -Dhttp.maxConnections=20\n\
    -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager\n\
    -server\n\
    -Xms128m\n\
    -Xmx512m\n\
    -XX:MaxMetaspaceSize=128m\n\
    -XX:CompressedClassSpaceSize=32m\n\
    -XX:-UseGCOverheadLimit\n\
    -XX:+UseTLAB\n\
    -XX:+DisableExplicitGC\n\
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            return id;
        }
    
        public String getPath() {
            return path;
        }
    
        public Date getTimestamp() {
            return timestamp;
        }
    
        public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) {
            this.dictionaryManager = dictionaryManager;
            return this;
        }
    
        public void writeOut(final WrittenStreamOut out) throws IOException {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java

        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new StopwordsFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.6K bytes
    - Viewed (0)
Back to top