Mikhail Mazurskiy
Mikhail Mazurskiy
> The Equal ignores order and duplicates when comparing the set. Having an Equal on the list also allows comparison of structs that contain the list. Ok, I see the...
So if we build a `cmp.Option` that would do that transformation, we and library users will be able to use it like this: ```go a := ... // a is...
@mortent Thanks for clarifying this. Hm, that means `ConfigMap` as-is is not fit for this purpose and... cannot be used? So the default option in this library is something that...
@bgrant0607 > How are you using cli-utils? We are using `cli-utils` to perform apply and pruning in the GitOps feature of the [GitLab Kubernetes Agent](https://docs.gitlab.com/ee/user/clusters/agent/). > Do you have specific...
I'll open a PR. Thanks for the instructions!
Fix for `v1.10.0`: ``` # See https://github.com/open-telemetry/opentelemetry-go-contrib/issues/872 go_repository( name = "io_opentelemetry_go_otel", build_directives = [ "gazelle:go_visibility @io_opentelemetry_go_otel_metric//:__subpackages__", ], # keep build_file_proto_mode = "disable", importpath = "go.opentelemetry.io/otel", sum = "h1:Y7DTJMR6zs1xkS/upamJYk0SxxN4C9AqRd77jmZnyY4=", version =...
Thanks for the issue. I don't think it's necessarily a problem - a binary may be run with different arguments, even in the same build/`run`. So concatenating arguments from the...
Another potential performance optimization is to allow to disable field sorting. Any/random order is fine in most situations.
In addition to `go_fmt` test rule it'd be useful to have a rule that formats the source files. It should probably format only files/packages that were modified. Or this is...
Related to this issue - if anyone is interested, we have a rule to run [goimports](https://github.com/atlassian/bazel-tools/tree/master/goimports). I'm interested in any feedback.