Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for pidfile (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

        // Search Execute
        // ==============
    
        /**
         * Displays the profile index page.
         *
         * @return the HTML response
         */
        @Execute
        public HtmlResponse index() {
            return asIndexHtml();
        }
    
        /**
         * Changes the user password.
         *
         * @param form the profile form
         * @return the HTML response
         */
        @Execute
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_label.properties

    labels.logout_button=Logout
    labels.profile=Change Password
    labels.administration=Administration
    labels.profile_button=Settings
    labels.profile.title=Settings
    labels.profile.update=Update
    labels.profile.back=Back
    labels.profile.placeholder_old_password=Current Password
    labels.profile.placeholder_new_password=New Password
    labels.profile.placeholder_confirm_new_password=Confirm New Password
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_en.properties

    labels.logout_button=Logout
    labels.profile=Change Password
    labels.administration=Administration
    labels.profile_button=Settings
    labels.profile.title=Settings
    labels.profile.update=Update
    labels.profile.back=Back
    labels.profile.placeholder_old_password=Current Password
    labels.profile.placeholder_new_password=New Password
    labels.profile.placeholder_confirm_new_password=Confirm New Password
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_zh_TW.properties

    labels.logout=登出
    labels.do_you_want_to_logout=您要登出嗎?
    labels.logout_button=登出
    labels.profile=更改密碼
    labels.administration=管理
    labels.profile_button=設定
    labels.profile.title= 設定
    labels.profile.update= 更新
    labels.profile.back= 返回
    labels.profile.placeholder_old_password= 目前密碼
    labels.profile.placeholder_new_password= 新密碼
    labels.profile.placeholder_confirm_new_password= 確認新密碼
    labels.top.search=搜尋
    labels.index_title=Fess
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 43.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_nl.properties

    labels.logout_button=Uitloggen
    labels.profile=Wachtwoord wijzigen
    labels.administration=Beheer
    labels.profile_button=Instellingen
    labels.profile.title= Instellingen
    labels.profile.update= Bijwerken
    labels.profile.back= Terug
    labels.profile.placeholder_old_password= Huidig wachtwoord
    labels.profile.placeholder_new_password= Nieuw wachtwoord
    labels.profile.placeholder_confirm_new_password= Nieuw wachtwoord bevestigen
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 46.1K bytes
    - Viewed (1)
  6. src/main/resources/fess_label_ru.properties

    labels.do_you_want_to_logout=Вы хотите выйти?
    labels.logout_button=Выход
    labels.profile=Изменить пароль
    labels.administration=Администрирование
    labels.profile_button=Настройки
    labels.profile.title=Настройки
    labels.profile.update=Обновить
    labels.profile.back=Назад
    labels.profile.placeholder_old_password=Текущий пароль
    labels.profile.placeholder_new_password=Новый пароль
    labels.profile.placeholder_confirm_new_password=Подтвердите новый пароль
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 60.2K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_pt_BR.properties

    labels.logout_button=Logout
    labels.profile=Alterar senha
    labels.administration=Administração
    labels.profile_button=Configurações
    labels.profile.title= Configurações
    labels.profile.update= Atualizar
    labels.profile.back= Voltar
    labels.profile.placeholder_old_password= Senha atual
    labels.profile.placeholder_new_password= Nova senha
    labels.profile.placeholder_confirm_new_password= Confirmar nova senha
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 48.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/OsddHelper.java

            if (path == null) {
                logger.warn("OSDD file path could not be resolved: {}", osddPath);
                return null;
            }
            final File osddFile = new File(path);
            if (!osddFile.isFile()) {
                logger.warn("OSDD path is not a file: {}", path);
                return null;
            }
            return osddFile;
        }
    
        /**
         * Checks if OSDD link is enabled.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                final File noImageFile = new File(outputFile.getAbsolutePath() + NOIMAGE_FILE_SUFFIX);
                if (!noImageFile.isFile() || systemHelper.getCurrentTimeAsLong() - noImageFile.lastModified() > noImageExpired) {
                    if (noImageFile.isFile() && !noImageFile.delete()) {
                        logger.warn("Failed to delete no-image file: {}", noImageFile.getAbsolutePath());
                    }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

            super.processWebInfLib();
    
            final WebResource[] possibleJars = listResources("/WEB-INF/plugin", false);
    
            for (final WebResource possibleJar : possibleJars) {
                if (possibleJar.isFile() && possibleJar.getName().endsWith(".jar")) {
                    try (final JarFile jarFile = new JarFile(possibleJar.getCanonicalPath())) {
                        final Manifest manifest = jarFile.getManifest();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 3.3K bytes
    - Viewed (0)
Back to top