Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for 0x1 (0.01 seconds)

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

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

       * When that limit is exceeded, the web socket is gracefully shut down.
       */
      fun queueSize(): Long
    
      /**
       * Attempts to enqueue `text` to be UTF-8 encoded and sent as a the data of a text (type `0x1`)
       * message.
       *
       * This method returns true if the message was enqueued. Messages that would overflow the outgoing
       * message buffer (16 MiB) will be rejected and trigger a [graceful shutdown][close] of this web
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:45:14 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixTrie.java

    @GwtCompatible
    public final class PublicSuffixTrie {
    
      /** Each node in the trie takes up 3 characters. */
      static final int NODE_SIZE = 3;
    
      static final int CHILDREN_MASK = 0x7FF;
      static final int EXCLUSION_MASK = 0x1;
      static final int TYPE_MASK = 0x3;
      static final int EXCLUSION_SHIFT = 11;
      static final int WILDCARD_SHIFT = 12;
      static final int EXACT_SHIFT = 14;
    
      final CharSequence trieData;
      final CharSequence stringPool;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 21:21:59 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt

        for (codePoint in codePoints) {
          encodings[codePoint] = encoding
        }
      }
    
      fun nonPrintableAscii(encoding: Encoding) =
        apply {
          encodings[0x0] = encoding // Null character
          encodings[0x1] = encoding // Start of Header
          encodings[0x2] = encoding // Start of Text
          encodings[0x3] = encoding // End of Text
          encodings[0x4] = encoding // End of Transmission
          encodings[0x5] = encoding // Enquiry
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 12.3K bytes
    - Click Count (0)
Back to Top