Tony Worm

Results 325 comments of Tony Worm

Does this break current usage? - I use symlinks in `cue.mod/pkg/...`, will that work by default as it does today? - There is at least one public API function which...

I think I was confused about the breaking API change (reading on mobile) For module support, I'm referring to the future plans and how we should think about this might...

@ElliotSwart another question which came up but I haven't given much thought to... - There are a number of functions introduced which add a suffix to the name but do...

Oh, I also think that if I import the OpenAPI v3.0 spec schema, and then use that try to validate other OpenAPI schemas, it will always fail because the `openapi`...

This reminds me of "Abuse of CUE" https://github.com/hofstadter-io/cuetorials.com/tree/main/code/puzzles/advent-of-code (I used lists, this is a struct, but the same idea applies) There is a non-flow reproducer more than likely. I believe...

There is task parallelism in CUE/flow that cannot be controlled when more than one tasks is ready to run. This is the issue I am referring to, which lives above...

I think there is a misunderstanding, the issue I am describing is in no way related to buildkit. The issue lives in the Go code that implements cue/flow. To work...

This issue is not specific to cue/flow, it's in the evaluator which cue/flow also uses, though cue/flow may exacerbate it due to re-evaluation every time a task completes. There are...

A simpler reproducer without cue/flow ``` exec cue eval repro.cue -- repro.cue -- import "list" #Task: { // input: _ input: string | bool | int | { a: string,...

Note sure this is unique to the beta, seeing the same result with `v0.4.2` A couple of things I found This does not work, seems the definition for `cli.Ask` is...