Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for No (0.32 sec)

  1. internal/config/policy/opa/config.go

    		CloseRespFn: closeRespFn,
    	}
    	if err = args.Validate(); err != nil {
    		return args, err
    	}
    	return args, nil
    }
    
    // New - initializes opa policy engine connector.
    func New(args Args) *Opa {
    	// No opa args.
    	if args.URL == nil || args.URL.Scheme == "" && args.AuthToken == "" {
    		return nil
    	}
    	return &Opa{
    		args:   args,
    		client: &http.Client{Transport: args.Transport},
    	}
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 14 21:50:16 GMT 2023
    - 5.2K bytes
    - Viewed (1)
  2. internal/kms/config.go

    	EnvKESEndpoint         = "MINIO_KMS_KES_ENDPOINT"       // One or multiple KES endpoints, separated by ','
    	EnvKESKeyName          = "MINIO_KMS_KES_KEY_NAME"       // The default key name used for IAM data and when no key ID is specified on a bucket
    	EnvKESAPIKey           = "MINIO_KMS_KES_API_KEY"        // Access credential for KES - API keys and private key / certificate are mutually exclusive
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 07:42:50 GMT 2024
    - 2K bytes
    - Viewed (0)
  3. internal/config/config.go

    	}
    	region := env.Get(EnvRegion, "")
    	if region == "" {
    		env.Get(EnvRegionName, "")
    	}
    	if region == "" {
    		region = env.Get(EnvSiteRegion, siteKV.Get(RegionKey))
    	}
    	if region == "" {
    		// No region config found in the site-subsystem. So lookup the legacy
    		// region sub-system.
    		if err = CheckValidKeys(RegionSubSys, regionKV, DefaultRegionKVS); err != nil {
    			// An invalid key was found in the region sub-system.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top