Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for live (0.12 sec)

  1. internal/config/api/api.go

    // LookupConfig - lookup api config and override with valid environment settings if any.
    func LookupConfig(kvs config.KVS) (cfg Config, err error) {
    	deprecatedKeys := []string{
    		apiReadyDeadline,
    		"extend_list_cache_life",
    		apiReplicationWorkers,
    		apiReplicationFailedWorkers,
    		"expiry_workers",
    	}
    
    	disableODirect := env.Get(EnvAPIDisableODirect, kvs.Get(apiDisableODirect)) == config.EnableOn
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 01:08:07 GMT 2024
    - 11.1K bytes
    - Viewed (1)
  2. internal/fips/api.go

    //
    // [1]: https://en.wikipedia.org/wiki/FIPS_140
    package fips
    
    import (
    	"crypto/tls"
    
    	"github.com/minio/sio"
    )
    
    // Enabled indicates whether cryptographic primitives,
    // like AES or SHA-256, are implemented using a FIPS 140
    // certified module.
    //
    // If FIPS-140 is enabled no non-NIST/FIPS approved
    // primitives must be used.
    const Enabled = enabled
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Dec 30 19:37:07 GMT 2022
    - 5.1K bytes
    - Viewed (0)
Back to top