Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for hasIntersection (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ConnectionSpec.kt

        if (!isTls) {
          return false
        }
    
        if (tlsVersionsAsString != null &&
          !tlsVersionsAsString.hasIntersection(socket.enabledProtocols, naturalOrder())
        ) {
          return false
        }
    
        if (cipherSuitesAsString != null &&
          !cipherSuitesAsString.hasIntersection(
            socket.enabledCipherSuites,
            CipherSuite.ORDER_BY_NAME,
          )
        ) {
          return false
        }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Jan 10 09:36:53 GMT 2026
    - 13.5K bytes
    - Click Count (0)
Back to Top