Andrew Jackson (Ajax)
Andrew Jackson (Ajax)
Today (from example): ```go var ( StoreRequest validation.RuleSet = validation.RuleSet{ "name": {"required", "string", "between:3,50"}, "price": {"required", "numeric", "min:0.01"}, "image": {"nullable", "file", "image", "max:2048", "count:1"}, } // ... ) func Routes(router...
Implicitly if my handler is called then I can presume a safe conversion from string to *url.Url if that's what the JSON validation guarantees. This has the unfortunate downside of...
I'd like this to be a way for grpc have a server-initiated rpc call for connected clients by using this with an http call for the response. Then grpc covers...
Nothing currently, however server-initiated rpc calls are missing from grpc, so enabling this through push frames may be an option. I'm investigating this with the grpc team.
There are many safe cases not covered in my V1 proposal, but allowing no false positives makes it a valuable tool while it grows. V1 should also warn on sync,...
The whole idea is to either prove safety or error with "could not prove whether this program is threadsafe". That 'warn' talk was my debating adding to that error some...
The difference @mateusz834 found is not guaranteed The [spec](https://go.dev/ref/spec#Appending_and_copying_slices) says: - If the capacity of s is not large enough to fit the additional values, append allocates a new, sufficiently...
The most common use is (we presume) to stand up a server that is likely to be used for long-term monitoring. You can set config.Subsystems.GuiAddress by editing this on base,...
Thanks. I've adapted it into https://github.com/filecoin-project/lotus/pull/12013
> TODOs after pre-beta: When we determine which items are needed for Curio-production, lets link that epic here.