owengray-google

Results 21 comments of owengray-google

The most obvious problematic case for `actual`s inheriting from `expect`s is when that would cause an inheritance collision. For example, if you had `/** with docs*/ expect class EfficientSparseArray` and...

Still TODO is creating a kotlin-inheriting-from-Java test and verifying that `DescriptorToDocumentableTranslator` should be automatically deciding on Kotlin.

Still has TODOs, especially adding dedicated tests.

I have been looking around, and KSP [is doing something similar](https://github.com/google/ksp/blob/main/compiler-plugin/src/main/kotlin/com/google/devtools/ksp/symbol/impl/binary/KSPropertyAccessorDescriptorImpl.kt) to what I was trying here with their `origin` and `location` attributes. They have a lot of code and...

This looks like it is the same Trove concurrency issue we have been running into, on dokka 1.6.0. Migrating from [issue 2052](https://github.com/Kotlin/dokka/issues/2052): ``` at com.intellij.openapi.diagnostic.DefaultLogger.error(DefaultLogger.java:53) at com.intellij.openapi.diagnostic.Logger.error(Logger.java:143) at com.intellij.util.IdempotenceChecker.reportFailure(IdempotenceChecker.java:92) at...

This occurs when running dackka agains the entire androidx repo, https://cs.android.com/androidx/platform/frameworks/support. That's presumably not necessary, but it is likely that the size contributes to increasing the flake rate. (if you...

Yes, dackka (dokka for dac (`developer.android.com`)) is our dokka plugin. I don't know whether 14GB of ram would be enough. It seems very unlikely that it would not be (it...

We have another manifestation of what appears to be this threadsafety issue. It is in LazyAnotationDescriptor, using a StorageManager for memoization, which is the kind of thing that can be...

When we run this through dackka, we notice the heightened flake rate for all files in the root of the package tree like `index.html`, such as `package-list`, `classes.html`, and `packages.html`,...

If a quick fix happened to slow down the file writing step, I don't think that would be too much of an issue for us, based on the times that...