glob icon indicating copy to clipboard operation
glob copied to clipboard

Go glob

Results 35 glob issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi! I have an app which builds in-memory cache containing `glob.Glob` for a number of patterns from a DB. I would like to move this local cache to a separate...

When trying to match `something.java` to the path `**/something.java`, the package returns false. This _seems_ to be incorrect. Every online glob match tester I've tried makes a successful match, for...

#PoC ```go gg, _ := glob.Compile("/{a{*.json{", '/') gg.Match("/a/b/c/d/e/foo.json") ``` #CrashLog ``` panic: runtime error: slice bounds out of range [:6] with length 5 [recovered] panic: runtime error: slice bounds out...

I did not understand what "super-asterisk" means, and I had naively assumed that the behaviour would match glob implementations I am used to. If there's anything that was described in...