okio icon indicating copy to clipboard operation
okio copied to clipboard

A modern I/O library for Android, Java, and Kotlin Multiplatform.

Results 148 okio issues
Sort by recently updated
recently updated
newest added

``` FileNotFoundException: no preopen: / ```

tests
file system

## Issue Description When converting strings to Path objects using `String.toPath()` on non-JVM platforms, there's a potential memory allocation inefficiency. Unlike the JVM implementation that utilizes a SegmentPool for recycling...

The change log lists release 3.11.0 (https://github.com/square/okio/blob/master/CHANGELOG.md#version-3110). It's not been published as a GitHub release - https://github.com/square/okio/releases/latest is still 3.10.2.

While `Writer` of Java IO implements `Appendable`, it will be good to have it in BufferedSink

We have `BufferedReader.lines(): Stream` in Java, so I hope that `BufferedSource` can also integrate similar APIs.

I have the following method running on Kotlin/Native linux/amd64: ```kotlin fun set(id: String, value: Long) { val bookmarkPath = path / id FileSystem.SYSTEM.sink(bookmarkPath).use { s -> s.buffer().use { b ->...

From https://github.com/square/okhttp/pull/8665 Ideally we would have ``` override fun indexOf(bytes: ByteString, fromIndex: Long, toIndex: Long): Long ```

Being able to use Gzip in common code would be a killer feature. I surveyed the other options out there: - Korge supports more targets, but not all of them,...