Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InsertContains (0.32 sec)

  1. pkg/config/security/security.go

    	if len(suites) == 0 {
    		return nil
    	}
    	ret := make([]string, 0, len(suites))
    	validCiphers := sets.New[string]()
    	for _, s := range suites {
    		if IsValidCipherSuite(s) {
    			if !validCiphers.InsertContains(s) {
    				ret = append(ret, s)
    			} else if log.DebugEnabled() {
    				log.Debugf("ignoring duplicated cipherSuite: %q", s)
    			}
    		} else if log.DebugEnabled() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top