Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pickup (0.03 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/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)
  4. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            assertEquals("/admin/accesstoken/admin_accesstoken_edit.jsp",
                    FessHtmlPath.path_AdminAccesstoken_AdminAccesstokenEditJsp.getRoutingPath());
            assertEquals("/admin/backup/admin_backup.jsp", FessHtmlPath.path_AdminBackup_AdminBackupJsp.getRoutingPath());
            assertEquals("/admin/badword/admin_badword.jsp", FessHtmlPath.path_AdminBadword_AdminBadwordJsp.getRoutingPath());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

                // Change default time zone temporarily
                TimeZone newTimeZone = TimeZone.getTimeZone("America/New_York");
                TimeZone.setDefault(newTimeZone);
    
                // Create new provider instance to pick up the new default
                FessUserTimeZoneProcessProvider newProvider = new FessUserTimeZoneProcessProvider();
    
                // Execute
                TimeZone result = newProvider.getRequestedTimeZone(requestManager);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

                // but our test implementation always checks system properties
                String value2 = fessConfig.get(testKey);
                // In our test implementation, it will pick up the new value
                assertEquals(newValue, value2);
            } finally {
                // Clean up system property
                System.clearProperty(Constants.FESS_CONFIG_PREFIX + testKey);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top