Daniel Martí

Results 1547 comments of Daniel Martí

I raised the same issue [on the forum last year](https://github.community/t5/GitHub-Actions/git-config-core-autocrlf-should-default-to-false/td-p/30445), and while it did get an initial reply from @ethomson, it hasn't seen any response since.

To recap - it seems like @rogpeppe would like `cue.Value{}` to be "bottom", i.e. equivalent to an error. Advantages: * The API currently behaves like that somewhat; e.g. `cue.Value{}.Kind() ==...

> Making the zero Value behave more like top would require changing all of those, and hence it would be be a very significant breaking change that I don't think...

> I think it would be hard to argue that a value could both be "top" and "non-existent" or have an error. I'm not saying that. I'm saying that we...

Do you mean generating jsonschema from CUE? If so, this would be https://github.com/cue-lang/cue/issues/929.

I see, thanks. I would suggest that we focus on https://github.com/cue-lang/cue/issues/929 to track supporting encoding CUE schemas to JSON Schema; once that is in place, adding a package to be...

I am actually able to reproduce this with our `./scripts/check-third-party.sh` tests. `garble build google.golang.org/protobuf/...` finished quickly, but `garble -tiny -literals build google.golang.org/protobuf/...` hangs for many minutes. The hang is happening...

Yup, I can still reproduce as I described in https://github.com/burrowers/garble/issues/928#issuecomment-2817306706. The compiler has been hung for three minutes here, on go1.24.3. I'm not sure why CI isn't hitting this.

I just tried re-running `./scripts/check-third-party.sh` on master with Go 1.24.5 and once again it got hung pretty quickly. I watched a `compile` process not move for almost a minute before...

Thank you @JustinTimperio for sharing a tiny example, that's really helpful. It's interesting to see that it's not really about the compiler hanging, but just taking a huge amount of...