mattdee123
mattdee123
The following code hangs indefinitely on my laptop (OSX). ``` import threading import timeout_decorator @timeout_decorator.timeout(1) def main(): l = threading.Lock() l.acquire() l.acquire() if __name__ == '__main__': main() ``` With `use_signals`,...
The `command` field of a compose service can be [either a list of strings, or a single string](https://docs.docker.com/compose/compose-file/#command). This project represents it as ``` // ShellCommand is a string or...
**Describe the bug** In order to write a test for a webhook handler, I would like to create sample webhook events, but cannot do so with a struct literal expression....
### Description `docker volume prune` [has an `--all` flag](https://docs.docker.com/reference/cli/docker/volume/prune/) which cleans up any unused volumes. However, the [Client library's VolumesPrune](https://pkg.go.dev/github.com/docker/docker/client#section-readme) function doesn't seem to have a way to get that...