Results 195 comments of Florian Klink

@opalmer what about review.coreboot.org? It's on the latest gerrit version, and I can query the following: `label:Verified=+1,user=jenkins status:open` Link: https://review.coreboot.org/q/label:Verified%253D%252B1%252Cuser%253Djenkins+status:open

`rmlint` has already been packaged in 2013 in https://github.com/NixOS/nixpkgs/pull/605, and GUI support (as an opt-in) is underway in https://github.com/NixOS/nixpkgs/pull/90267.

@TomWright did you take a look at an upgrade to `yaml.v3`, and whether this preserves comments? I definitely see comment-related fields in the `Node` struct: https://pkg.go.dev/gopkg.in/yaml.v3#Node

I currently work this around by using ``` i18n.inputMethod.enabled = "ibus"; i18n.inputMethod.ibus.engines = with pkgs.ibus-engines; [ uniemoji ] ```

Yeah, I was mostly concerned about the case not being properly handled. `git clone` warns the user to have cloned an empty repo, and provides an empty worktree - however,...

Hm, having some sort of retry behaviour in libraries when they deal with network access seems to be not too uncontroversial - see https://godoc.org/cloud.google.com/go/storage: > All of the methods of...

Yes, I understood. > I don't want to add a timeout or deadline. Just to make sure I correctly understand that part - so you would prefer an indefinite exponential...

Prometheus Operator seems to store this info in the [`Prometheus` CRs](https://docs.openshift.com/container-platform/4.7/rest_api/monitoring_apis/prometheus-monitoring-coreos-com-v1.html), at `spec.{rule{,Namespace}Selector}`. While using different CRDs, VictoriaMetrics operator seems to have a alerts-specific [`VMAlert.spec.{rule{,Namespace}Selector}`](https://docs.victoriametrics.com/operator/api.html#vmalertspec) that describes where to select...

It seems `servicemonitors.monitoring.coreos.com.spec.jobLabel` might be the right attribute to set, to replace all `job` labels in the returned metrics properly. However, the description > The label to use to retrieve...