Julian Taylor

Results 47 comments of Julian Taylor

If you run docker-machine with `--debug` and get these types of errors: ``` /usr/bin/docker-machine-driver-kvm: /lib/x86_64-linux-gnu/libvirt.so.0: version `LIBVIRT_5.10.0' not found ``` this means the binary is incompatible to your libvirt version...

this does seem almost out of scope for numpy and more something for a statistics package, has this been previously discussed?

The issue is that k8s gives no meaning to the resource version but the resource version is just the exported modification index of its underlying datastore, etcd. etcd explicitly does...

A list operation returns a single object and I assume kubernetes sorts the entries in that list itself so there should be no issue. The problem is only with watch...

the list issue is https://github.com/kubernetes-client/python/issues/745 This is something that comes from the code generator and I have not found an easy way to fix it.

sum uses pairwise summation which is reasonably accurate without a performance impact. kahan sum could already be implemented now but is significantly slower. how exactly are you summing? pairwise summation...

That might be the problem, the fast axis in numpy is the last one by default (C order). How does it fare when you have your arrays in fortran order?

The dangling blockaffinity had following content: ``` spec: cidr: 100.70.221.192/26 deleted: "false" node: kworker-be-prod-iz2-270 state: pending

are you using vim 7.4? the 7.4 regex engine is very bad for how easytags uses it. see https://groups.google.com/forum/#!topic/vim_dev/cPcMap1BdQw as suggested replacing syntax match with syntax keyword solves the issue...

I applied this patch which works for me, not it drops suffix, don't know what its used for: ``` patch --- a/misc/easytags/highlight.py +++ b/misc/easytags/highlight.py @@ -51,5 +51,5 @@ def easytags_gensyncmd(tagsfiles,...