Itamar Turner-Trauring

Results 335 issues of Itamar Turner-Trauring

Show live view (of some sort) of allocations as they happen.

enhancement

Probably have it injected (via LD_PRELOAD) but not enabled, similar to what would have to happen for Jupyter support.

enhancement

Hi, I'm trying to catch panics in some code with Flume: ```rust pub fn add_allocation(&self, address: usize, size: usize) { // simplified from real code. catch_unwind(|| { self.sender.send( AddAllocationCommand {...

This may or may not be a problem in general; in my case it caused a deadlock. Scenario: ```rust struct Command { sender: flume::Sender } impl Command { fn new()...

After going through the quickstart, and reading `example/jobs.yaml`, I now have good idea of how I as a user can submit jobs. I presume I can go read K8s docs...

documentation

Hi, As I discuss here (https://pythonspeed.com/articles/root-capabilities-docker-security/), running Docker containers as root is a problem, opening you up to a bunch of security attacks (e.g. escalation to root on host in...

Hi, I'd like to tell people about flameprof in talk I'm giving, but it's failing for me: ``` $ python -m cProfile -o out.prof benchmarks/serialization.py $ flameprof out.prof > prof.svg...

If you ever have a little free time— I'd like to use the SVG-generating code not for `pstats`, but for my own datastructures (see https://github.com/itamarst/eliot/issues/220). My original thought was to...

Hi, One issue with running benchmarks is the need for a consistent hardware environment, which reduces the ability for people use things like ASV. I've spent a bunch of time...

Probably want to e.g. check if `/var/run/docker.sock` is readable/writeable and then prefix sudo if it isn't: https://github.com/datawire/telepresence/blob/38b808dff4ed45fdb0635eaa2418d3020169da1a/cli/telepresence#L152