Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for print (0.21 sec)

  1. internal/config/identity/ldap/config.go

    	l.LDAP.GroupSearchFilter = getCfgVal(GroupSearchFilter)
    	l.LDAP.GroupSearchBaseDistName = getCfgVal(GroupSearchBaseDN)
    
    	// If enable flag was not explicitly set, we treat it as implicitly set at
    	// this point as necessary configuration is available.
    	if !isEnableFlagExplicitlySet && !l.LDAP.Enabled {
    		l.LDAP.Enabled = true
    	}
    	// Validate and test configuration.
    	valResult := l.LDAP.Validate()
    	if !valResult.IsOk() {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 7.9K bytes
    - Viewed (2)
  2. internal/config/config.go

    		dkv, ok := cs.Defaults.LookupKV(kv.Key)
    		if !ok {
    			continue
    		}
    		// Ignore empty and deprecated values
    		if dkv.HiddenIfEmpty && kv.Value == "" {
    			continue
    		}
    		// Do not need to print if state is on
    		if kv.Key == Enable && kv.Value == EnableOn {
    			continue
    		}
    		b.WriteString(kv.String())
    		b.WriteString(KvSpaceSeparator)
    	}
    
    	b.WriteString(KvNewline)
    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