Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 33 for conv (0.03 seconds)

  1. src/main/assemblies/files/service.bat

    set unit=%value:~-1%
    rem assume the unit is specified
    set conv=%value:~0,-1%
    
    if "%unit%" == "k" goto kilo
    if "%unit%" == "K" goto kilo
    if "%unit%" == "m" goto mega
    if "%unit%" == "M" goto mega
    if "%unit%" == "g" goto giga
    if "%unit%" == "G" goto giga
    
    rem no unit found, must be bytes; consider the whole value
    set conv=%value%
    rem convert to KB
    set /a conv=%conv% / 1024
    :kilo
    rem convert to MB
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 6K bytes
    - Click Count (0)
  2. src/main/webapp/js/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
  3. src/main/webapp/js/admin/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
  4. src/packaging/common/systemd/fess.conf

    Kaoru FUZITA <******@****.***> 1449710642 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 89 bytes
    - Click Count (0)
  5. src/packaging/common/systemd/sysctl/fess.conf

    Kaoru FUZITA <******@****.***> 1449710642 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 47 bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        /**
         * Gets the path to configuration files. In Docker environments, checks /opt/fess first,
         * then falls back to system property FESS_CONF_PATH, and finally to WEB-INF/conf.
         *
         * @param names the path components to append to the configuration directory
         * @return the Path object pointing to the configuration file or directory
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

        public void test_getConfPath() {
            Path confPath = ResourceUtil.getConfPath("test.conf");
            assertNotNull(confPath);
    
            // Test with empty names
            confPath = ResourceUtil.getConfPath();
            assertNotNull(confPath);
    
            // Test with multiple names
            confPath = ResourceUtil.getConfPath("dir1", "dir2", "file.conf");
            assertNotNull(confPath);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            // SPNEGO
            form.spnegoKrb5Conf = fessConfig.getSystemProperty("spnego.krb5.conf", "krb5.conf");
            form.spnegoLoginConf = fessConfig.getSystemProperty("spnego.login.conf", "auth_login.conf");
            form.spnegoLoginClientModule = fessConfig.getSystemProperty("spnego.login.client.module", "spnego-client");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  9. .gitignore

    /src/main/webapp/WEB-INF/thumbnails/
    /src/main/webapp/jar/
    /dbflute_fess/extlib/*
    /dbflute_fess/log/*.log
    /dbflute_h2/log/*.log
    /dbflute_mysql/log/*.log
    /dbflute_oracle/log/*.log
    /src/main/webapp/WEB-INF/conf/*.properties
    /src/main/webapp/WEB-INF/db/*.lock.db
    /src/main/webapp/WEB-INF/logs/fess*
    /.settings/
    .project
    .classpath
    *.iml
    .idea
    .vscode
    .DS_Store
    /plugins/
    /modules/
    /tomcat.8080/
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Aug 31 08:19:00 GMT 2025
    - 1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            confDir = Files.createDirectories(tempDir.resolve("conf"));
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            System.clearProperty("fess.var.path");
            System.clearProperty("fess.webapp.path");
            System.clearProperty("fess.conf.path");
            if (tempDir != null) {
                deleteRecursively(tempDir.toFile());
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
Back to Top