mdavidsaver
mdavidsaver
An attempt to fix #624, at least for asyncio. I'm not certain how unit ID should be handled here. Can a client have requests to multiple unit IDs in-flight? I've...
This PR has had very little testing. At this point I'm looking for comment. Is this a good idea/approach? Something which could be merged? Is there already a way to...
cf. https://epics.anl.gov/tech-talk/2021/msg02039.php On 11/24/21 6:07 PM, Shankar, Murali via Tech-talk wrote: > Hello, > > I am trying to track down some connectivity issues. I am using the wireshark LUA...
Apparently some versions/builds for Lua have a limited stack size which is exceeded by the many `local` variables in ca.lua. This manifests with a [`... function or expression too complex...
From https://epics.anl.gov/tech-talk/2021/msg01435.php https://github.com/ralphlange/procServ/blob/cd68a34da12ec156c4126932b62947ee195b6210/procServUtils/generator.py#L27-L28 There is currently no dependency on `autofs.service`, so attempts to run executables from an autofs mounted location may sporadically fail on boot. The `autofs.service` unit from https://mirrors.edge.kernel.org/pub/linux/daemons/autofs/v5/...
The "make.exe" bundled with strawberry perl 5.38.0.1 appears to have an issue which causes the --output-sync / -O flag to error out when a recursive make is attempted. ``` make...
Add decoding of PVA within TLS using the `tls.alpn` table provisionally using `pva/1` as the protocol name string. The `test/pva-tls.pcapng.gz` capture contains a TLS 1.3 session with the associated session...
In trying to figure out how to build wheels of OSX I (naively?) tried: > python -m setup.py -p macosx_10_6_intel.macosx_10_6_x86_64 I find that the resulting .whl is named `cythonxx_demo-0.0.0-cp37-cp37m-macosx_10_6_intel_macosx_10_6_x86_64.whl` and...
I've been looking at Cython with an eye toward replacing some hand written cpython extension code binding a C++ library. This library is for a network client and server, and...