- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for onData (0.04 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/PushObserver.kt
* * While [onReset] may occur at any time, the following callbacks are expected in order, * correlated by stream ID. * * * [onRequest] * * [onHeaders] (unless canceled) * * [onData] (optional sequence of data frames) * * As a stream ID is scoped to a single HTTP/2 connection, implementations which target multiple * connections should expect repetition of stream IDs. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
} /** * Encodes data in Base64. * * @param inData * The data to encode * @return The encoded data */ public static String encode(final byte[] inData) { if (ArrayUtil.isEmpty(inData)) { return ""; } final int mod = inData.length % 3; final int num = inData.length / 3; char[] outData = null; if (mod != 0) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.2K bytes - Viewed (0)