Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 20060102150405 (0.09 sec)

  1. cmd/callhome.go

    )
    
    func sendHealthInfo(ctx context.Context, healthInfo madmin.HealthInfo) error {
    	url := globalSubnetConfig.BaseURL + subnetHealthPath
    
    	filename := fmt.Sprintf("health_%s.json.gz", UTCNow().Format("20060102150405"))
    	url += "?filename=" + filename
    
    	_, err := globalSubnetConfig.Upload(url, filename, createHealthJSONGzip(ctx, healthInfo))
    	return err
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. docs/debugging/inspect/main.go

    	switch {
    	case *keyHex != "":
    		// Backup any already existing output file
    		_, err := os.Stat(outputFileName)
    		if err == nil {
    			err := os.Rename(outputFileName, outputFileName+"."+time.Now().Format("20060102150405"))
    			if err != nil {
    				fatalErr(err)
    			}
    		}
    		output, err := os.Create(outputFileName)
    		fatalErr(err)
    		msg := fmt.Sprintf("output written to %s", outputFileName)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Feb 17 17:09:42 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. cmd/object-lambda-handlers_test.go

    			req.Form = url.Values{"lambdaArn": []string{lambdaARN}}
    			req.Header.Set("Host", "localhost")
    			req.Header.Set("X-Amz-Date", time.Now().UTC().Format("20060102T150405Z"))
    			sum := sha256.Sum256(body)
    			req.Header.Set("X-Amz-Content-Sha256", hex.EncodeToString(sum[:]))
    			req = signer.SignV4(*req, credentials.AccessKey, credentials.SecretKey, "", "us-east-1")
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jul 18 21:56:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. cmd/signature-v4.go

    	"github.com/minio/minio/internal/hash/sha256"
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    // AWS Signature Version '4' constants.
    const (
    	signV4Algorithm = "AWS4-HMAC-SHA256"
    	iso8601Format   = "20060102T150405Z"
    	yyyymmdd        = "20060102"
    )
    
    type serviceType string
    
    const (
    	serviceS3  serviceType = "s3"
    	serviceSTS serviceType = "sts"
    )
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Dec 13 22:19:12 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. cmd/post-policy_test.go

    	"fmt"
    	"io"
    	"maps"
    	"mime/multipart"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/dustin/go-humanize"
    )
    
    const (
    	iso8601DateFormat = "20060102T150405Z"
    )
    
    func newPostPolicyBytesV4WithContentRange(credential, bucketName, objectKey string, expiration time.Time) []byte {
    	t := UTCNow()
    	// Add the expiration date.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 30.6K bytes
    - Viewed (0)
Back to top