Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Kemp (0.15 sec)

  1. cmd/test-utils_test.go

    )
    
    // Random number state.
    // We generate random temporary file names so that there's a good
    // chance the file doesn't exist yet.
    var (
    	randN  uint32
    	randmu sync.Mutex
    )
    
    // Temp files created in default Tmp dir
    var globalTestTmpDir = os.TempDir()
    
    // reseed - returns a new seed every time the function is called.
    func reseed() uint32 {
    	return uint32(time.Now().UnixNano() + int64(os.Getpid()))
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  2. cmd/sts-handlers.go

    }
    
    // AssumeRoleWithCertificate implements user authentication with client certificates.
    // It verifies the client-provided X.509 certificate, maps the certificate to an S3 policy
    // and returns temp. S3 credentials to the client.
    //
    // API endpoint: https://minio:9000?Action=AssumeRoleWithCertificate&Version=2011-06-15
    func (sts *stsAPIHandlers) AssumeRoleWithCertificate(w http.ResponseWriter, r *http.Request) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 21:31:13 GMT 2024
    - 34.7K bytes
    - Viewed (2)
Back to top