Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for Ashour (0.2 sec)

  1. src/main/resources/fess_label_en.properties

    labels.searchlog_log_type_search_zeroclick=Zero Clicks
    labels.searchlog_log_type_search_count_hour=Keyword by Hour
    labels.searchlog_log_type_search_count_day=Keyword by Day
    labels.searchlog_log_type_search_user_hour=User by Hour
    labels.searchlog_log_type_search_user_day=User by Day
    labels.searchlog_log_type_search_reqtimeavg_hour=Request Time Avg. by Hour
    labels.searchlog_log_type_search_reqtimeavg_day=Request Time Avg. by Day
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  2. internal/rest/client.go

    // https://www.awsarchitectureblog.com/2015/03/backoff.html
    func exponentialBackoffWait(r *rand.Rand, unit, cap time.Duration) func(uint) time.Duration {
    	if unit > time.Hour {
    		// Protect against integer overflow
    		panic("unit cannot exceed one hour")
    	}
    	return func(attempt uint) time.Duration {
    		if attempt > 16 {
    			// Protect against integer overflow
    			attempt = 16
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  3. docs/sts/assume-role.md

    ## API Request Parameters
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 7.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_ru.properties

    labels.searchlog_log_type_search_zeroclick=Zero Clicks
    labels.searchlog_log_type_search_count_hour=Keyword by Hour
    labels.searchlog_log_type_search_count_day=Keyword by Day
    labels.searchlog_log_type_search_user_hour=User by Hour
    labels.searchlog_log_type_search_user_day=User by Day
    labels.searchlog_log_type_search_reqtimeavg_hour=Request Time Avg. by Hour
    labels.searchlog_log_type_search_reqtimeavg_day=Request Time Avg. by Day
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  5. internal/config/heal/heal.go

    		return -1, err
    	}
    
    	if months < minimumBitrotCycleInMonths {
    		return -1, fmt.Errorf("minimum bitrot cycle is %d month(s)", minimumBitrotCycleInMonths)
    	}
    
    	return time.Duration(months) * 30 * 24 * time.Hour, nil
    }
    
    // LookupConfig - lookup config and override with valid environment settings if any.
    func LookupConfig(kvs config.KVS) (cfg Config, err error) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 01:10:30 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  6. cmd/globals.go

    	// tmp directory are deemed stale.
    	GlobalStaleUploadsExpiry = time.Hour * 24 // 24 hrs.
    
    	// GlobalStaleUploadsCleanupInterval - Cleanup interval when the stale uploads cleanup is initiated.
    	GlobalStaleUploadsCleanupInterval = time.Hour * 6 // 6 hrs.
    
    	// Refresh interval to update in-memory iam config cache.
    	globalRefreshIAMInterval = 10 * time.Minute
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  7. internal/config/identity/openid/openid.go

    func GetDefaultExpiration(dsecs string) (time.Duration, error) {
    	timeout := env.Get(config.EnvMinioStsDuration, "")
    	defaultExpiryDuration, err := time.ParseDuration(timeout)
    	if err != nil {
    		defaultExpiryDuration = time.Hour
    	}
    	if timeout == "" && dsecs != "" {
    		expirySecs, err := strconv.ParseInt(dsecs, 10, 64)
    		if err != nil {
    			return 0, auth.ErrInvalidDuration
    		}
    
    		// The duration, in seconds, of the role session.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Nov 16 04:42:31 GMT 2023
    - 16.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_ko.properties

    labels.searchlog_log_type_search_zeroclick=Zero Clicks
    labels.searchlog_log_type_search_count_hour=Keyword by Hour
    labels.searchlog_log_type_search_count_day=Keyword by Day
    labels.searchlog_log_type_search_user_hour=User by Hour
    labels.searchlog_log_type_search_user_day=User by Day
    labels.searchlog_log_type_search_reqtimeavg_hour=Request Time Avg. by Hour
    labels.searchlog_log_type_search_reqtimeavg_day=Request Time Avg. by Day
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                    } else {
                        // t not in DST so subtract 1 hour
                        t -= 3600000;
                    }
                } else {
                    // not in DST
                    if( TZ.inDaylightTime( new Date( t ))) {
                        // t is in DST so add 1 hour
                        t += 3600000;
                    } else {
                        // t isn't in DST either
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  10. docs/sts/tls.md

    - MinIO returns temp. S3 credentials associated to the found policy.
    
    The returned credentials expiry after a certain period of time that can be configured via `&DurationSeconds=3600`. By default, the STS credentials are valid for 1 hour. The minimum expiration allowed is 15 minutes.
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 6K bytes
    - Viewed (0)
Back to top