Michael S. Fischer

Results 30 comments of Michael S. Fischer

In relevant part from the documentation (emphasis mine): > hugepages > Specify the number of huge pages to preallocate. This typically follows a valid hugepagesz or default_hugepagesz parameter. _However, if...

You can't just gzip-compress files according to a regexp; the client has to present an appropriate Accept-Encoding: header. In my view this functionality belongs in Node.js itself.

If the client presents the Accept-Encoding: header, then the response can be compressed. The file type is irrelevant. I think it belongs in the core because the functionality should be...

Oh yes, quite right. I'd forgotten about that. You might want to take a look at Apache's [mod_deflate](http://httpd.apache.org/docs/2.0/mod/mod_deflate.html) for inspiration.

@geckofu I think this change (in #37) caused a regression. The `$PUB_KEY` file is not a PEM-encoded key as required by the apiserver; it is an OpenSSH-format public key. The...

The NVIDIA device plugin already makes an integral value available for resource allocation called `nvidia.com/gpu.shared`. This value is based on the value of `nvidia.com/gpu` multiplied by the device plugin configuration's...

I have a colleague who's working on it right now - keep an eye out for a future PR.

I too think it's an interesting idea, but not at the cost of performance. If Protocol::Redis' parser is slower than AE::Redis::Protocol's hand-optimized parser, that's not a tradeoff I want to...

That sounds very promising, then. :)

You can, in fact, install additional tools on the worker instance, using a `null_resource` resource and a `local-exec` provisioner. See https://developer.hashicorp.com/terraform/enterprise/run/install-software#installing-additional-tools for details. Example: ``` resource "null_resource" "install-aws-cli" { provisioner...