Mikhail Mazurskiy

Results 145 comments of Mikhail Mazurskiy

I use it, so I think it is.

The only rules from this project I personally use are multirun and bulldozer. All the linters don't work well with bazel.

What if you want to run 3 commands and only first and third need these arguments? :) IIRC [each command can have individual arguments](https://github.com/ash2k/bazel-tools/blob/19b174803c0db1a01e77f10fa2079c35f54eed6e/multirun/def.bzl#L215-L217) for such use cases.

@dolmen Perhaps the check could be implemented by the assertion looking at the goroutine's stacktrace? This might be fragile as stacktrace is not an API so there should be a...

I don't understand how an arena allocator would help here, could you elaborate? I just want a way to re-use the allocated memory to avoid more allocations, not to free...

Ok, I see. Thanks for the explanation. This looks like it would solve my problem indeed. However, this seems to be a bit overengineered if you ask me :) I...

https://github.com/bazelbuild/rules_apple/pull/2034 https://github.com/bazelbuild/rules_apple/issues/2035

Thanks! I managed to move to bzlmod a few weeks ago, so I don't know if this is still an issue.

Yeah, I see what you mean. I think we should get that PR merged and then think about restructuring the project to make it more like a library rather than...

Just encountered this issue. Trying to generate mocks for OpenTelemetry interfaces and they have embedded interfaces with private methods. Sigh. Example: https://github.com/open-telemetry/opentelemetry-go/blob/98b32a6c3a87fbee5d34c063b9096f416b250897/metric/asyncint64.go#L42-L49