Byoungchan Lee

Results 38 comments of Byoungchan Lee

From what I've tested, the [channels](https://w3c.github.io/webrtc-stats/#dom-rtccodecstats-channels) in `RTCCodecStats` is giving me the correct value for how many channels are being used.

> This would be much easier than the current approach of summing up the total encode and decode times, dividing them by the core count (and multiplying by some factor)...

Based on my understanding, `go get` downloads source codes with write permissions removed. As a result, extracting (`tar -xf`) cache files to `GOPATH` may cause errors. It would be helpful...

@dsame Aha, that makes sense. I'm not sure if changing the default based on where the runner is running (i.e., provided by GitHub or self-hosted) is a good idea. I...

I made a test case for this issue. I tested it locally and it works fine. The code is here: https://github.com/bc-lee/flutter-packages/commit/6ddf333bf5e8429e45edf311cd0826441a7ffef8 - Pigeon 19.0.0 fails this test code, and generated...

Okay, I uploaded a PR on your repo: https://github.com/tarrinneal/packages/pull/1

Similar issue: https://github.com/flutter/flutter/issues/148519

Here is what I tested on an Arm64 system with a 64K page size. It seems all shared libraries have a 64K page size, and IntelliJ IDEA works as expected,...

Dart really needs to support contracts. **Kotlin** already has it. For example, Kotlin's standard library includes the `check` function: ```kotlin @kotlin.internal.InlineOnly public inline fun check(value: Boolean): Unit { contract {...