Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 349 for backup (0.85 sec)

  1. src/main/resources/fess_message_de.properties

    errors.crud_failed_to_delete_crud_table=Fehler beim Löschen der Daten. ({0})
    errors.crud_could_not_find_crud_table = Die Daten {0} wurden nicht gefunden.
    errors.could_not_find_backup_index=Kein Backup-Index gefunden.
    errors.no_user_for_changing_password=Das aktuelle Passwort ist nicht korrekt.
    errors.failed_to_change_password=Fehler beim Ändern Ihres Passworts.
    errors.unknown_version_for_upgrade=Unbekannte Version für Upgrade.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_pt_BR.properties

    labels.menu_wizard=Assistente
    labels.menu_crawl_config=Geral
    labels.menu_scheduler_config=Agendador
    labels.menu_dashboard_config=Painel
    labels.menu_design=Design da página
    labels.menu_dict=Dicionário
    labels.menu_data=Backup/Restauração
    labels.menu_crawl=Rastreador
    labels.menu_web=Web
    labels.menu_file_system=Sistema de arquivos
    labels.menu_data_store=Armazenamento de dados
    labels.menu_label_type=Rótulo
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_it.properties

    errors.crud_failed_to_delete_crud_table=Impossibile eliminare i dati. ({0})
    errors.crud_could_not_find_crud_table = Dati {0} non trovati.
    errors.could_not_find_backup_index=Impossibile trovare l'indice di backup.
    errors.no_user_for_changing_password=La password attuale non è corretta.
    errors.failed_to_change_password=Impossibile cambiare la password.
    errors.unknown_version_for_upgrade=Informazioni sulla versione sconosciute.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        public static final int FILE_DELETE_ON_CLOSE = 0x1000;
        /**
         * Open file by its file ID
         */
        public static final int FILE_OPEN_BY_FILE_ID = 0x2000;
        /**
         * The file is being opened for backup intent
         */
        public static final int FILE_OPEN_FOR_BACKUP_INTENT = 0x4000;
        /**
         * Disable compression on the file
         */
        public static final int FILE_NO_COMPRESSION = 0x8000;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_message.properties

    errors.crud_failed_to_delete_crud_table=Failed to delete the data. ({0})
    errors.crud_could_not_find_crud_table = The data {0} is not found.
    errors.could_not_find_backup_index=Could not find any backup index.
    errors.no_user_for_changing_password=The current password is not correct.
    errors.failed_to_change_password=Failed to change your password.
    errors.unknown_version_for_upgrade=Unknown version for upgrade.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_en.properties

    errors.crud_failed_to_delete_crud_table=Failed to delete the data. ({0})
    errors.crud_could_not_find_crud_table = The data {0} is not found.
    errors.could_not_find_backup_index=Could not find any backup index.
    errors.no_user_for_changing_password=The current password is not correct.
    errors.failed_to_change_password=Failed to change your password.
    errors.unknown_version_for_upgrade=Unknown version for upgrade.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

     */
    package org.codelibs.fess.app.web.admin;
    
    import org.codelibs.fess.annotation.Secured;
    import org.codelibs.fess.app.web.admin.accesstoken.AdminAccesstokenAction;
    import org.codelibs.fess.app.web.admin.backup.AdminBackupAction;
    import org.codelibs.fess.app.web.admin.badword.AdminBadwordAction;
    import org.codelibs.fess.app.web.admin.boostdoc.AdminBoostdocAction;
    import org.codelibs.fess.app.web.admin.crawlinginfo.AdminCrawlinginfoAction;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_BACKUP_TARGETS = "index.backup.targets";
    
        /** The key of the configuration. e.g. click_log.ndjson,favorite_log.ndjson,search_log.ndjson,user_info.ndjson */
        String INDEX_BACKUP_LOG_TARGETS = "index.backup.log.targets";
    
        /** The key of the configuration. e.g. 60000 */
        String INDEX_BACKUP_LOG_LOAD_TIMEOUT = "index.backup.log.load.timeout";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        if (initialized) {
          return // Already initialized.
        }
    
        // If a bkp file exists, use it instead.
        if (fileSystem.exists(journalFileBackup)) {
          // If journal file also exists just delete backup file.
          if (fileSystem.exists(journalFile)) {
            fileSystem.delete(journalFileBackup)
          } else {
            fileSystem.atomicMove(journalFileBackup, journalFile)
          }
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Dictionary */
        public static final String LABELS_menu_dict = "{labels.menu_dict}";
    
        /** The key of the message: Backup/Restore */
        public static final String LABELS_menu_data = "{labels.menu_data}";
    
        /** The key of the message: Crawler */
        public static final String LABELS_menu_crawl = "{labels.menu_crawl}";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
Back to top