Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Summary (0.17 sec)

  1. docs/sts/web-identity.md

    <details><summary>Example 1: Two role policy providers</summary>
    
    Sample environment variables:
    
    ```
    MINIO_IDENTITY_OPENID_DISPLAY_NAME="my first openid"
    MINIO_IDENTITY_OPENID_CONFIG_URL=http://myopenid.com/.well-known/openid-configuration
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 19.2K bytes
    - Viewed (1)
  2. cmd/admin-heal-ops.go

    			apiErr.Code, apiErr.Description)
    	}
    )
    
    // healSequenceStatus - accumulated status of the heal sequence
    type healSequenceStatus struct {
    	// summary and detail for failures
    	Summary       healStatusSummary `json:"Summary"`
    	FailureDetail string            `json:"Detail,omitempty"`
    	StartTime     time.Time         `json:"StartTime"`
    
    	// settings for the heal sequence
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 25.1K bytes
    - Viewed (1)
  3. cmd/data-usage-cache.go

    	replication replicationConfig     `msg:"-"`
    }
    
    func (e *dataUsageEntry) addSizes(summary sizeSummary) {
    	e.Size += summary.totalSize
    	e.Versions += summary.versions
    	e.DeleteMarkers += summary.deleteMarkers
    	e.ObjSizes.add(summary.totalSize)
    	e.ObjVersions.add(summary.versions)
    
    	if e.ReplicationStats == nil {
    		e.ReplicationStats = &replicationAllStats{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 41.4K bytes
    - Viewed (1)
  4. docs/sts/ldap.md

    ```
    
    
    Note that the commands above attempt to validate if the given entity (user or group) exist in the LDAP directory and return an error if they are not found.
    
    <details><summary> View **DEPRECATED** older policy association commands</summary>
    
    Please **do not use** these as they may be removed or their behavior may change.
    
    ```sh
    mc admin policy attach myminio mypolicy --user='uid=james,cn=accounts,dc=myldapserver,dc=com'
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 18.4K bytes
    - Viewed (1)
  5. cmd/global-heal.go

    	return &healSequence{
    		startTime:   UTCNow(),
    		clientToken: bgHealingUUID,
    		// run-background heal with reserved bucket
    		bucket:   minioReservedBucket,
    		settings: hs,
    		currentStatus: healSequenceStatus{
    			Summary:      healNotStartedStatus,
    			HealSettings: hs,
    		},
    		cancelCtx:          cancelCtx,
    		ctx:                ctx,
    		reportProgress:     false,
    		scannedItemsMap:    make(map[madmin.HealItemType]int64),
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 15K bytes
    - Viewed (1)
  6. cmd/data-scanner.go

    	replicaCount    int64
    	pendingCount    uint64
    	failedCount     uint64
    	replTargetStats map[string]replTargetSizeSummary
    	tiers           map[string]tierStats
    }
    
    // replTargetSizeSummary holds summary of replication stats by target
    type replTargetSizeSummary struct {
    	replicatedSize  int64
    	replicatedCount int64
    	pendingSize     int64
    	failedSize      int64
    	pendingCount    uint64
    	failedCount     uint64
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 11:18:58 GMT 2024
    - 47.6K bytes
    - Viewed (0)
Back to top