Jamie Wilkinson

Results 15 issues of Jamie Wilkinson

It's possible to use the memmap fs to create a file, chmod it to 0, and then open it without a problem. When using memmap to simulate a filesystem in...

bug

If you have a regexp that spands multiple lines, you can concat them with + like so: ``` const FOO /start of foo / + /next bit of foo/ ```...

bug
mtail-Language/VM

When using a const by itself as a match condition, then we get warnings about the capture group names not existing. ``` const A /(?.*)/ A { x[$a]++ } ```...

bug
mtail-Language/VM

Expressions like: ``` getfilename() =~ "abc.log" && /expression/ { ``` are illegale bcause =~ abc.log and expression both cause capture group 0 to be inserted into the current scope, throwing...

bug
mtail-Language/VM

https://groups.google.com/d/topic/mtail-users/hdXIyiluDxc/discussion talks about mapping logs to programs and points out that running the apache program over the nginx logs is a waste of CPU. It really is. This bug acknowledges...

enhancement
mtail-Log Tailing
mtail-Operating

I just turned this on, and got a message like: Error (use-package): auto-package-update/:config: Removing old name: Permission denied, /usr/share/emacs/site-lisp/elpa/pod-mode-1.3/Install.log.gz in *Warnings* at startup. My config is ``` (use-package auto-package-update :ensure...

@3c2b2ff5 contrinubted a samba integration test script but it needs a bit of work to run in Travis CI. I'd also like to turn my (not submitted) OpenLDAP test script...

While doing the python3 conversion I realised that the data handlers never cared about encodings and now we've got a mix of ascii and utf8 encodings between sources and caches....

On Debian systems, yapf exists as both yapf for Python 2 and yapf3 for Python 3. yapf can't format Python 3 as a result; this lets the user select the...