Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for storageEndpoints (0.19 sec)

  1. cmd/erasure-healing.go

    		}
    
    		result.Before.Drives = append(result.Before.Drives, madmin.HealDriveInfo{
    			UUID:     "",
    			Endpoint: storageEndpoints[i].String(),
    			State:    driveState,
    		})
    		result.After.Drives = append(result.After.Drives, madmin.HealDriveInfo{
    			UUID:     "",
    			Endpoint: storageEndpoints[i].String(),
    			State:    driveState,
    		})
    
    		if shouldHealObjectOnDisk(errs[i], dataErrs[i], partsMetadata[i], latestMeta) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setNotificationLogin(form.notificationLogin);
            fessConfig.setNotificationSearchTop(form.notificationSearchTop);
            fessConfig.setStorageEndpoint(form.storageEndpoint);
            if (form.storageAccessKey != null && StringUtil.isNotBlank(form.storageAccessKey.replace("*", " "))) {
                fessConfig.setStorageAccessKey(form.storageAccessKey);
            }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String notificationLogin;
    
        @Size(max = 3000)
        public String notificationSearchTop;
    
        @Size(max = 10)
        public String logLevel;
    
        @Size(max = 1000)
        public String storageEndpoint;
    
        @Size(max = 1000)
        public String storageAccessKey;
    
        @Size(max = 1000)
        public String storageSecretKey;
    
        @Size(max = 1000)
        public String storageBucket;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="storageEndpoint"
                                               class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.storage_endpoint"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="storageEndpoint"/>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 39.4K bytes
    - Viewed (0)
Back to top