John Yani
John Yani
But isn't it an TCP level load balancing? > we make this work using Linux IPVS, an in-kernel **Layer 4** multi-protocol **load balancer** that’s been in the Linux kernel for...
It's also called "persistence" or "affinity": http://www.linuxvirtualserver.org/docs/persistence.html
@mrjana what about swarm's routing mesh? How can it be disabled in swarm mode? As far as I understand from the demo, even if you choose a static IP address...
Is this fixed? I'm still having this issue. Should I be using master version?
So, there's this provisional standard in Python 3.5, [PEP-484 Type Hints](https://www.python.org/dev/peps/pep-0484/). It's based on [PEP 3107 -- Function Annotations](https://www.python.org/dev/peps/pep-3107/) syntax (Python 3.0) and allows you to define types for static...
Well, by "pip package" I meant "to be installable using `setup.py install`"
So it doesn't use distutils anymore? Could you please update README? https://github.com/coin3d/pivy/blob/master/README.md
As far as I understood: pythonocc generates python binding using a custom pythonocc-generator by parsing C++ header files and creating SWIG *.i files. In the following PR this pythonocc-generator was...
I've tried the CppHeaderParser. It works, but unfortunately, API documentation is located at the *.cpp files rather than in header files and CppHeaderParser can't parse out doxygen comments out of...
Here's a CppHeaderParser approach. Requires `pip install robotpy-cppheaderparser` 1. Configure coin3d to genarate coin_build: `cmake -Hcoin -Bcoin_build -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr/local` 2. Preprocess C++ header file using one of two...