Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for pickup (0.12 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        /**
         * Represents an API response containing a list of backup files.
         */
        public static class ApiBackupFilesResponse extends ApiResponse {
            /**
             * The list of backup files, where each file is represented by a map of strings.
             */
            protected List<Map<String, String>> files;
            /**
             * The total number of backup files.
             */
            protected long total = 0;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Backup management.
     *
     */
    public class AdminBackupAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminBackupAction() {
            super();
        }
    
        /**
         * The role for this action.
         */
        public static final String ROLE = "admin-backup";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                // * alternate between selecting a start and end date for the range,
                // * if the time picker is enabled, apply the hour/minute/second from the select boxes to the clicked date
                // * if autoapply is enabled, and an end date was chosen, apply the selection
                // * if single date picker mode, and time picker isn't enabled, apply the selection immediately
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    							<p><la:message key="labels.menu_search_list" /></p>
    						</a></li></c:if>
    
    					<c:if test="${fe:permission('admin-backup-view')}">
    					<li class="nav-item">
    						<a href="${fe:url('/admin/backup/')}" class="nav-link <c:if test="${param.menuType=='backup'}">active</c:if>">
    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_backup" /></p>
    						</a></li></c:if>
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/BackupTests.java

    import io.restassured.path.json.JsonPath;
    
    @Tag("it")
    public class BackupTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "backupTest_";
        private static final String API_PATH = "/api/admin/backup";
        private static final String LIST_ENDPOINT_SUFFIX = "files";
        private static final String ITEM_ENDPOINT_SUFFIX = "file";
    
        private static final String KEY_PROPERTY = "";
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

          // If journal file also exists just delete backup file.
          if (fileSystem.exists(journalFile)) {
            fileSystem.delete(journalFileBackup)
          } else {
            fileSystem.atomicMove(journalFileBackup, journalFile)
          }
        }
    
        civilizedFileSystem = fileSystem.isCivilized(journalFileBackup)
    
        // Prefer to pick up where we left off.
        if (fileSystem.exists(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)
  7. src/main/resources/fess_label_en.properties

    labels.menu_wizard=Wizard
    labels.menu_crawl_config=General
    labels.menu_scheduler_config=Scheduler
    labels.menu_dashboard_config=Dashboard
    labels.menu_design=Page Design
    labels.menu_dict=Dictionary
    labels.menu_data=Backup/Restore
    labels.menu_crawl=Crawler
    labels.menu_web=Web
    labels.menu_file_system=File System
    labels.menu_data_store=Data Store
    labels.menu_label_type=Label
    labels.menu_key_match=Key Match
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    ftp.role.from.file=true
    
    # backup
    
    # Target files for index backup.
    index.backup.targets=fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json
    # Target log files for index backup.
    index.backup.log.targets=click_log.ndjson,favorite_log.ndjson,search_log.ndjson,user_info.ndjson
    # Timeout for loading index backup logs.
    index.backup.log.load.timeout=60000
    
    # logging
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  9. deploy_website.sh

    python3 -m venv venv
    source venv/bin/activate
    pip install mkdocs-material mkdocs-redirects
    mkdocs gh-deploy
    
    # Restore Javadocs from 1.x, 2.x, and 3.x.
    git checkout gh-pages
    git cherry-pick bb229b9dcc9a21a73edbf8d936bea88f52e0a3ff
    git cherry-pick c695732f1d4aea103b826876c077fbfea630e244
    git push --set-upstream origin gh-pages
    
    # Delete our temp folder
    cd ..
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            // Setup ingest factory
            TestIngester ingester = new TestIngester();
            ingestFactory.ingesters.add(ingester);
            ComponentUtil.register(ingestFactory, "ingestFactory");
    
            // Reinitialize to pick up factory
            indexUpdateCallback.init();
    
            DataStoreParams paramMap = new DataStoreParams();
            Map<String, Object> dataMap = new HashMap<>();
            dataMap.put("test", "value");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top