Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 94 for pickup (0.14 seconds)

  1. internal/s3select/csv/reader_contrib_test.go

    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 38.4K bytes
    - Click Count (0)
  2. docs/integrations/veeam/README.md

    ### Create a backup job
    
    #### Backup Virtual Machines with Veeam Backup and Replication
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/backup/UploadForm.java

     */
    package org.codelibs.fess.app.web.admin.backup;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form class for backup file upload.
     * This form handles file uploads for backup and restore operations.
     */
    public class UploadForm {
    
        /**
         * The backup file to be uploaded.
         */
        @Required
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.1K bytes
    - Click Count (1)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

        }
    
        /**
         * Downloads a specific backup file by ID.
         * Supports various backup formats including system properties, bulk data, and NDJSON logs.
         *
         * @param id the backup file ID to download
         * @return stream response containing the backup file data
         */
        // GET /api/admin/backup/file/{id}
        @Execute
        public StreamResponse get$file(final String id) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  5. cmd/benchmark-utils_test.go

    }
    
    // randomly picks a character and returns its equivalent byte array.
    func getRandomByte() []byte {
    	const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
    	// seeding the random number generator.
    	rand.Seed(UTCNow().UnixNano())
    	// pick a character randomly.
    	return []byte{letterBytes[rand.Intn(len(letterBytes))]}
    }
    
    // picks a random byte and repeats it to size bytes.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 8.1K bytes
    - Click Count (0)
  6. MIGRATION.md

    ```
    
    ### Importing Configuration
    
    **Via Admin UI**:
    1. **System > Backup > Upload**
    2. Select `fess*.json` file
    3. Click **Import**
    
    **Via API**:
    ```bash
    curl -X POST "http://localhost:8080/api/admin/backup/upload" \
      -u admin:admin \
      -F "file=@fess-config-backup.json"
    ```
    
    ### System Properties
    
    Critical system settings in `system.properties`:
    
    ```properties
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/view/admin/backup/admin_backup.jsp

        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="log"/>
            <jsp:param name="menuType" value="backup"/>
        </jsp:include>
        <main class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  8. internal/crypto/key.go

    // UnsealETag unseals the etag using the provided object key.
    // It does not try to decrypt the ETag if len(etag) == 16
    // because such ETags indicate that the S3 client hasn't sent
    // an ETag = MD5(object) and the backend has picked an ETag value.
    func (key ObjectKey) UnsealETag(etag []byte) ([]byte, error) {
    	if !IsETagSealed(etag) {
    		return etag, nil
    	}
    	mac := hmac.New(sha256.New, key[:])
    	mac.Write([]byte("SSE-etag"))
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri May 16 14:27:42 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  9. 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";
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Mon Nov 24 02:07:40 GMT 2025
    - 32.1K bytes
    - Click Count (0)
  10. 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;
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 24.9K bytes
    - Click Count (0)
Back to Top