- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for listSource (0.39 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/BasePublicSuffixList.kt
@Throws(IOException::class) private fun readTheList() { var publicSuffixListBytes: ByteString? var publicSuffixExceptionListBytes: ByteString? try { listSource().buffer().use { bufferedSource -> val totalBytes = bufferedSource.readInt() publicSuffixListBytes = bufferedSource.readByteString(totalBytes.toLong()) val totalExceptionBytes = bufferedSource.readInt()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 3.6K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/publicsuffix/AssetPublicSuffixList.kt
import okio.Source import okio.source internal class AssetPublicSuffixList( override val path: String = PUBLIC_SUFFIX_RESOURCE, ) : BasePublicSuffixList() { override fun listSource(): Source { val assets = PlatformRegistry.applicationContext?.assets if (assets == null) { if (Build.FINGERPRINT == null) { throw IOException(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 1.7K bytes - Viewed (0)