Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for dotfile (0.2 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

            for (final DictionaryFile<? extends DictionaryItem> dictFile : getDictionaryFiles()) {
                if (dictFile.getId().equals(id)) {
                    return OptionalEntity.of(dictFile);
                }
            }
            return OptionalEntity.empty();
        }
    
        public void store(final DictionaryFile<? extends DictionaryItem> dictFile, final File file) {
            getDictionaryFile(dictFile.getId()).ifPresent(currentFile -> {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                    }
                } catch (final Exception e) {
                    throw new PluginException("Failed to install the artifact " + artifact.getName(), e);
                }
            } else {
                try (final InputStream in = new FileInputStream(url)) {
                    CopyUtil.copy(in, ResourceUtil.getPluginPath(fileName).toFile());
                } catch (final Exception e) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final FileTemplateLoader loader = new FileTemplateLoader(ResourceUtil.getViewTemplatePath().toFile());
            final Handlebars handlebars = new Handlebars(loader);
    
            Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            if (locale == null) {
                locale = Locale.ENGLISH;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String LOGGING_SEARCH_DOCS_FIELDS = "logging.search.docs.fields";
    
        /** The key of the configuration. e.g. true */
        String LOGGING_SEARCH_USE_LOGFILE = "logging.search.use.logfile";
    
        /** The key of the configuration. e.g. org.codelibs,org.dbflute,org.lastaflute */
        String LOGGING_APP_PACKAGES = "logging.app.packages";
    
        /** The key of the configuration. e.g. 10000 */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  5. dbflute_fess/dfprop/documentMap.dfprop

    #         ; schema = EXAMPLEDB
    #         ; user = exampuser
    #         ; password = exampword
    #     }
    #     ; propertiesHtmlMap = map:{
    #         ; ApplicationProperties = map:{
    #             ; rootFile = ../src/main/resources/application_ja.properties
    #         }
    #     }
    # }
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/log/admin_log.jsp

                                                <c:forEach var="logFile" varStatus="s"
                                                           items="${logFileItems}">
                                                    <tr
                                                            data-href="${contextPath}/admin/log/download/${f:u(logFile.id)}/">
                                                        <td>${f:h(logFile.name)}</td>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 4K bytes
    - Viewed (0)
  7. pom.xml

    				</dependencies>
    				<configuration>
    					<target>
    						<ant antfile="${basedir}/dbflute.xml" target="download.dbflute" />
    						<ant antfile="${basedir}/module.xml" target="install.modules">
    							<property name="with.fess" value="true" />
    							<property name="opensearch.version" value="${opensearch.version}" />
    						</ant>
    						<ant antfile="${basedir}/plugin.xml" target="install.plugins">
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Apr 14 04:03:33 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    logging.search.docs.enabled=true
    logging.search.docs.fields=filetype,created,click_count,title,doc_id,url,score,site,filename,host,digest,boost,mimetype,favorite_count,_id,lang,last_modified,content_length,timestamp
    logging.search.use.logfile=true
    logging.app.packages=org.codelibs,org.dbflute,org.lastaflute
    
    # ========================================================================================
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  9. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

        }
    
        public void test_getLogFilePath() {
            final File logFile = new File(systemHelper.getLogFilePath());
            assertEquals("logs", logFile.getName());
            assertEquals("target", logFile.getParentFile().getName());
            try {
                System.setProperty("fess.log.path", "logpath");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
Back to top