Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Tab (0.19 sec)

  1. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

          encodings[ 0x5] = encoding // Enquiry
          encodings[ 0x6] = encoding // Acknowledgment
          encodings[ 0x7] = encoding // Bell
          encodings['\b'.code] = encoding // Backspace
          encodings[ 0xb] = encoding // Vertical Tab
          encodings[ 0xe] = encoding // Shift Out
          encodings[ 0xf] = encoding // Shift In
          encodings[ 0x10] = encoding // Data Link Escape
          encodings[ 0x11] = encoding // Device Control 1 (oft. XON)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

          ','.code.toByte() -> {
            // Consume ','.
            readByte()
            commaFound = true
          }
    
          ' '.code.toByte(), '\t'.code.toByte() -> {
            readByte()
            // Consume space or tab.
          }
    
          else -> break@loop
        }
      }
      return commaFound
    }
    
    private fun Buffer.startsWith(prefix: Byte): Boolean = !exhausted() && this[0] == prefix
    
    /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  3. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    sytes.net sz szczecin.pl szczytno.pl szex.hu szkola.pl sálat.no sálát.no søgne.no sømna.no søndre-land.no sør-aurdal.no sør-fron.no sør-odal.no sør-varanger.no sørfold.no sørreisa.no sørum.no südtirol.it t.bg t.se t3l3p0rt.net ta.it taa.it tab tabayama.yamanashi.jp tabitorder.co.il tabuse.yamaguchi.jp tachiarai.fukuoka.jp tachikawa.tokyo.jp tadaoka.osaka.jp tado.mie.jp tadotsu.kagawa.jp tagajo.miyagi.jp tagami.niigata.jp tagawa.fukuoka.jp tahara.aichi.jp taifun-dns.de taiji.wakayama.jp taiki.hokkaido.jp...
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    swiss
    
    // sydney : 2014-09-18 State of New South Wales, Department of Premier and Cabinet
    sydney
    
    // systems : 2013-11-07 Binky Moon, LLC
    systems
    
    // tab : 2014-12-04 Tabcorp Holdings Limited
    tab
    
    // taipei : 2014-07-10 Taipei City Government
    taipei
    
    // talk : 2015-04-09 Amazon Registry Services, Inc.
    talk
    
    // taobao : 2015-01-15 Alibaba Group Holding Limited
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  5. docs/changelogs/changelog_3x.md

     *  Fix: Gracefully recover from HTTP/2 connection shutdowns at start of request.
     *  Fix: Be lenient if a `MediaType`'s character set is `'single-quoted'`.
     *  Fix: Allow horizontal tab characters in header values.
     *  Fix: When parsing HTTP authentication headers permit challenge parameters in any order.
    
    
    ## Version 3.4.2
    
    _2016-11-03_
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
Back to top