Charles Oliver Nutter

Results 1203 comments of Charles Oliver Nutter

@ntkme Thank you for that stack trace! Yes, this does indeed seem to be a similar problem. The failing line appears to be this one: ```java int read = fd.chRead.read(buffer);...

JDK 8 (the 1.x numbers are generally not used much anymore) would not have this problem because all of the JDK is always available there. JDK 11 would have this...

Hey, sorry for delay in looking at this! I'm not sure exactly how to reproduce this, but does deleting the comment and whitespace line out of `gemspec_pom.rb` help? If you...

I never saw this issue but thought I would add some comments to help out... > Currently, the sorbet gem is not installable because of its dependency on sorbet-static Yeah...

@fzakaria Oh that is a great doc! Your technique for getting Java types in there is clever, and with some refinement perhaps we can make it more automatic for people....

jruby/jruby#6592 has been merged and fixes the rogue `IPsocket` constant. I am curious why that would affect Sorbet, though, since the actual name of the class really was `IPSocket`. I...

Sure I'll see if I can put together a PR.

> Why would I like to call super in SomeService initializer? @silva96 In this particular example, it does nothing and perhaps the super call is not needed. The problem is...

A few clarifications from the JRuby side... jruby-openssl uses BouncyCastle because the built-in SSL (and other crypto) support on JDK was lacking... but that was almost 15 years ago. Much...

> ruby-tls is interesting because it does use FFI This is also interesting to us. For the record, the openssl extension is a nightmare to port or maintain. It depends...