Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for skip (0.16 sec)

  1. internal/logger/config.go

    	QueueSize  = "queue_size"
    	QueueDir   = "queue_dir"
    	Proxy      = "proxy"
    
    	KafkaBrokers       = "brokers"
    	KafkaTopic         = "topic"
    	KafkaTLS           = "tls"
    	KafkaTLSSkipVerify = "tls_skip_verify"
    	KafkaTLSClientAuth = "tls_client_auth"
    	KafkaSASL          = "sasl"
    	KafkaSASLUsername  = "sasl_username"
    	KafkaSASLPassword  = "sasl_password"
    	KafkaSASLMechanism = "sasl_mechanism"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. internal/config/config.go

    		// ignore it since it is a valid key for all
    		// sub-systems.
    		if kv.Key == Comment {
    			continue
    		}
    		var skip bool
    		for _, deprecatedKey := range deprecatedKeys {
    			if kv.Key == deprecatedKey {
    				skip = true
    				break
    			}
    		}
    		if skip {
    			continue
    		}
    		if _, ok := validKVS.Lookup(kv.Key); !ok {
    			nkv = append(nkv, kv)
    		}
    	}
    	if len(nkv) > 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  3. internal/config/policy/plugin/config.go

    	args := Args{}
    
    	if err := s.CheckValidKeys(config.PolicyPluginSubSys, nil); err != nil {
    		return args, err
    	}
    
    	getCfg := func(cfgParam string) string {
    		// As parameters are already validated, we skip checking
    		// if the config param was found.
    		val, _, _ := s.ResolveConfigParam(config.PolicyPluginSubSys, config.Default, cfgParam, false)
    		return val
    	}
    
    	pluginURL := getCfg(URL)
    	if pluginURL == "" {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 14 21:50:16 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  4. internal/config/identity/tls/config.go

    	// when debugging or testing a setup since it allows arbitrary
    	// clients to obtain temp. credentials with arbitrary policy
    	// permissions - including admin permissions.
    	EnvIdentityTLSSkipVerify = "MINIO_IDENTITY_TLS_SKIP_VERIFY"
    )
    
    // Config contains the STS TLS configuration for generating temp.
    // credentials and mapping client certificates to S3 policies.
    type Config struct {
    	Enabled bool `json:"enabled"`
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 04 19:57:37 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  5. internal/config/identity/ldap/config.go

    	GroupSearchBaseDN  = "group_search_base_dn"
    	TLSSkipVerify      = "tls_skip_verify"
    	ServerInsecure     = "server_insecure"
    	ServerStartTLS     = "server_starttls"
    
    	EnvServerAddr         = "MINIO_IDENTITY_LDAP_SERVER_ADDR"
    	EnvSRVRecordName      = "MINIO_IDENTITY_LDAP_SRV_RECORD_NAME"
    	EnvTLSSkipVerify      = "MINIO_IDENTITY_LDAP_TLS_SKIP_VERIFY"
    	EnvServerInsecure     = "MINIO_IDENTITY_LDAP_SERVER_INSECURE"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 7.9K bytes
    - Viewed (2)
Back to top