Sergey Fokin
Sergey Fokin
Conversions API currently doesn't look inside tuples. ```Julia using LightBSON struct X x::String end function Base.setindex!(writer::BSONWriter, value::X, index::Union{String, Symbol}) GC.@preserve value setindex!(writer, UnsafeBSONString(pointer(value.x), length(value.x)), index) end LightBSON.bson_representation_type(::Type{X}) = UnsafeBSONString buf...
I'm not very familiar with docker, maybe someone can help me with this. As an aside, I noticed that centos8 branch isn't up to date with master branch, maybe worth...
**Describe the bug** When downloading from SFTP via libcurl, I am hitting error code -44 with description "Unable to ask for ssh-userauth service". This happens for one particular SFTP server,...
**Describe the bug** I think [this line](https://github.com/appneta/tcpreplay/blob/43693c4a92dda227a5134ae5e71a7247ae345323/src/tcpedit/tcpedit.c#L321) causes tcpreplay-edit to recompute all checksums for all IP packets unnecessarily. I noticed this because of a [problem with recomputing UDP checksums](https://github.com/appneta/tcpreplay/pull/814), but...
`status()` is too generic of an export and not something you'd expect package `DataStructures` to export. More specific name (`token_status`? `semitoken_status`?) could be better, or just fully-qualified `DataStructures.status`
When exposing context properties via JuliaPropertyMap I find it a little limiting that there's basically only one level of indirection available. I.e. you can't make complex Julia objects to be...
I noticed there was some work to support `reinterpret(x, ::UnsafeArray)`: https://github.com/JuliaArrays/UnsafeArrays.jl/compare/reinterpret any reason it wasn't merged?
`__exa_udp_sockfds` hashtable may contain two types of objects: `struct exa_socket` for unicast subscriptions and `struct exa_mcast_membership` for multicast ones. Sometimes, due to hash collision, we'd be looking at an object...
Currently it fails on bitfields of 64-bit. I think it also generates wrong code for 16-bit or 8-bit bitfields.