Richard Ulmer

Results 29 issues of Richard Ulmer

There is no way to just change the key for an item. If I wanted to do this manually, I would have to use `Delete` and then `Add`, but upon...

The documentation of `Flush` states, that it deletes all items from the cache. When calling `Delete`, `onEvicted` is run. Combining these two pieces of knowledge I expected, that `onEvicted` would...

The `:spell-next` command did not work on OpenBSD. With this PR it seems to work on OpenBSD and Linux.

I was curious what the purpose of all the different tools in `cmd/` is, so I went to the documentation to find an explanation. I found the ["Source Code Layout"...

The current `routing.xml` file contains two entries using h2096617.stratoserver.net. This server seems to be down: ``` $ curl h2096617.stratoserver.net curl: (6) Could not resolve host: h2096617.stratoserver.net ```

When greping through the repository I couldn't find a single occurrence of the word 'ellipsis'. On the [GoDoc page](https://godoc.org/github.com/docopt/docopt.go#Opts.Bind) I found one example where `Bind()` is used to bind to...

Suppose I have this program: ```go package main import ( `fmt` `github.com/docopt/docopt-go` ) func main() { opts, _ := docopt.ParseDoc(` Usage: mytool --number=...`) var conf struct { Number []int }...

I often find myself wanting to upload multiple files in one go. This pull requests enables it.

This is not necessarily a feature request, but I'm curious how you would deal with disconnected DAGs, or if this is outside the scope of this library. Currently the library...