Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for construct (0.14 sec)

  1. cmd/bucket-lifecycle.go

    type restoreObjStatus struct {
    	ongoing bool
    	expiry  time.Time
    }
    
    // ongoingRestoreObj constructs restoreObjStatus for an ongoing restore-object.
    func ongoingRestoreObj() restoreObjStatus {
    	return restoreObjStatus{
    		ongoing: true,
    	}
    }
    
    // completeRestoreObj constructs restoreObjStatus for a completed restore-object with given expiry.
    func completedRestoreObj(expiry time.Time) restoreObjStatus {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 17 05:09:58 GMT 2024
    - 33.1K bytes
    - Viewed (0)
Back to top