Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for decodeHex (0.27 sec)

  1. okhttp/src/androidMain/baseline-prof.txt

    HSPLokio/Buffer;->writeUtf8(Ljava/lang/String;)Lokio/Buffer;
    HSPLokio/Buffer;->writeUtf8(Ljava/lang/String;II)Lokio/Buffer;
    HSPLokio/ByteString$Companion;-><init>(Landroidx/lifecycle/viewmodel/R$id;)V
    HSPLokio/ByteString$Companion;->decodeHex(Ljava/lang/String;)Lokio/ByteString;
    HSPLokio/ByteString$Companion;->encodeUtf8(Ljava/lang/String;)Lokio/ByteString;
    HSPLokio/ByteString;-><clinit>()V
    HSPLokio/ByteString;-><init>([B)V
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Dec 30 23:28:56 UTC 2024
    - 127.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

         */
        protected String getDecodeText(final String value) {
            if (value == null) {
                return StringUtil.EMPTY;
            }
            try {
                return MimeUtility.decodeText(value);
            } catch (final UnsupportedEncodingException e) {
                logger.warn("Invalid encoding.", e);
                return StringUtil.EMPTY;
            }
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top