Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hexToByte (0.08 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/stream/EncodedStream.java

                    throw new IOException("Unable to decode, expected 2 bytes but received only 1 byte. It seems the stream was not encoded correctly.");
                }
                return (hexToByte(byte1) << 4) | hexToByte(byte2);
            }
    
            public static int hexToByte(int s) throws IOException {
                if (s >= '0' && s <= '9') {
                    return s - '0';
                }
                if (s >= 'a' && s <= 'f') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top