Ian Johnson

Results 16 comments of Ian Johnson

I checked what HikariCP (another popular connection pool implementation) is doing, and it seems they have a few strategies for evicting connections from the pool: 1. When acquiring a connection...

The new Autodoc Markdown implementation isn't Commonmark, it's a custom implementation that lives here: https://github.com/ziglang/zig/tree/master/lib/docs/wasm/markdown The syntax using `

Upon further consideration (and considering the existing standard library doc comments as examples of what doc authors want), I decided to implement the "plain text" style as well in #19402.

It seems that the aarch64-macos-debug CI timed out, although unfortunately I don't have access to an aarch64-macos system to see if this is reproducible or just an unfortunate random occurrence....

Since #14603 introduces another way to declare the location of a dependency which is explicitly file-based (the `path` field, as opposed to the existing `url` field), perhaps it would make...

Is it possible for `expectEqualDeep` to return any error other than `TestExpectedEqual`? Unless I'm missing something, it seems to me it would be clearer to specify that restricted error set...

There's an important distinction to make between the proposed `@Result` builtin and what many people would expect of inferring the return type of a function: the `@Result` builtin gives the...

This is a good fix, although in the long run I wonder if it would be better to replace such code examples in doc comments with doctests, such as ```zig...

Due to the way Autodoc resolves paths, this file-level documentation is actually still available to view (e.g. see `#std.crypto.aegis`). However, as you noted, since `aegis.zig` is never actually exposed as...

This seems like an issue with error reporting, not so much that the assembly file is being completely ignored. For example, the following executable works fine with Zig 0.13.0-dev.69+a96b78c17, printing...