Gabriel Burt
Gabriel Burt
Support dynamic return arguments in a threadsafe way. (Versus setting c.ReturnValues which is shared state/not threadsafe.) Do this by modifying `Run` to accept three types of functions: ## 1: The...
The deprecation linter has false-negatives when: - instantiating structs - assignment of deprecated fields is not flagged - all references to deprecates structs and fields when the struct is in...
Since [this change](https://github.com/twilio/twilio-video.js/pull/1766/files#diff-623a0b434f5f9811ef20cc2cd0789b726701dac18afafb85f69a37c040fa597dR8) merged our webpack build of our repo using twilio-video is failing to build with the following error, so we're unable to upgrade to 2.23.0 ``` Error: Error:...
Avoid 'Cannot read property of undefined/null' by checking if elem is still set within the func called by the resize callback (where previously it was only guarded before setting up...
fixes #97
Calling [redis.subscribed?](http://www.rubydoc.info/github/redis/redis-rb/Redis#subscribed%3F-instance_method) I get ``` Passing 'subscribed?' command to redis as is; blind passthrough has been deprecated ``` I think it makes sense for redis-namespace to whitelist/proxy this method call?
Add a `Flush()` method to the `dataloader.Interface` that if called will immediately fetch the outstanding batch without waiting for the timer. Should let us lower the latency in situations where...
Exported objects' properties are not accessible via the standard org.freedesktop.DBus.Properties interface. I'm attaching a first, rough patch for fixing this. It implements Get and Set but not GetAll. It could...
The flip side of Issue 17 is being able to access remote objects' properties (that are exposed via org.freedesktop.DBus.Properties) without having to explicitly use that interface, but rather via C#...
Change `collator.Compare` and `collator.CompareString` funcs to just do `bytes.Compare` on the keys of the two strings. I'll be honest, I don't know why Compare/compare() was implemented how it was versus...