Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KELVIN (0.18 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

          verifyHostname(hostname, it)
        }
      }
    
      /**
       * This is like [toLowerCase] except that it does nothing if this contains any non-ASCII
       * characters. We want to avoid lower casing special chars like U+212A (Kelvin symbol) because
       * they can return ASCII characters that match real hostnames.
       */
      private fun String.asciiToLowercase(): String {
        return when {
          isAscii() -> lowercase(Locale.US) // This is an ASCII string.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <a href="#Interface_types">interface type</a>.
    </p>
    
    <p>
    Examples of interfaces with core types:
    </p>
    
    <pre>
    type Celsius float32
    type Kelvin  float32
    
    interface{ int }                          // int
    interface{ Celsius|Kelvin }               // float32
    interface{ ~chan int }                    // chan int
    interface{ ~chan int|~chan&lt;- int }        // chan&lt;- int
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  3. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2129          ; valid                  ;      ; NV8    # 1.1  TURNED GREEK SMALL LETTER IOTA
    212A          ; mapped                 ; 006B          # 1.1  KELVIN SIGN
    212B          ; mapped                 ; 00E5          # 1.1  ANGSTROM SIGN
    212C          ; mapped                 ; 0062          # 1.1  SCRIPT CAPITAL B
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
Back to top