mistergibson has quit [Quit: Leaving]
_whitelogger has joined #jruby
Guest69 has quit [Quit: Textual IRC Client: www.textualapp.com]
<GitHub56> [jruby] kares pushed 1 new commit to master: https://git.io/vQ3Ml
<GitHub56> jruby/master 0cf01b9 kares: fix failing frozen utc/local-time - shall return self when already in TZ...
<GitHub10> [jruby-openssl] kares closed issue #17: PEM Format headers differ in MRI and JRuby https://git.io/vQ3yS
prasun has joined #jruby
prasun has quit [Ping timeout: 255 seconds]
<GitHub90> [jruby] kares pushed 1 new commit to master: https://git.io/vQ3bu
<GitHub90> jruby/master 68bea61 kares: fix error raised when UDPSocket is already bound (now ruby/spec-ed)
drbobbeaty has quit [Ping timeout: 255 seconds]
balo has quit [Quit: leaving]
balo has joined #jruby
vtunka has joined #jruby
vtunka has quit [Quit: Leaving]
drbobbeaty has joined #jruby
rdubya has joined #jruby
swills has joined #jruby
bbrowning_away is now known as bbrowning
vtunka has joined #jruby
vtunka has quit [Quit: Leaving]
vtunka has joined #jruby
<GitHub89> [jruby] kares pushed 3 new commits to master: https://git.io/vQsCI
<GitHub89> jruby/master 242c3a5 kares: simplify createTime factory internals - split some parts into methods
<GitHub89> jruby/master 9faa66c kares: let to_s be the @JRubyMethod impl and remove old (un-used) constants
<GitHub89> jruby/master d039a35 kares: deprecate getlocal19 + use context arg impl for strftime as its used
vtunka has quit [Quit: Leaving]
vtunka has joined #jruby
lance|afk is now known as lanceball
swills has quit [Quit: Leaving]
<GitHub104> [jruby] kares pushed 8 new commits to master: https://git.io/vQs2B
<GitHub104> jruby/master 377904b kares: [tune] no need to do a toString conversion here - save up a char[] copy
<GitHub104> jruby/master 9ec21eb kares: [tune] can save a char[] copy by passing StringBuilder down directly
<GitHub104> jruby/master 5fd6bab kares: [find-bugs] stream.read return (bytes read) should not go ignored
<travis-ci> kares/jruby (test-next-improvements-pp4:8ac17f3 by kares): The build passed. (https://travis-ci.org/kares/jruby/builds/247073269)
<travis-ci> jruby/jruby (master:242c3a5 by kares): The build passed. (https://travis-ci.org/jruby/jruby/builds/247086285)
<headius> hiyas!
<headius> back from vacay
<headius> eugenmayer: dunno if you got an answer but I'd like to see that native library issue
<headius> no known issues, except for some recent problems with musl libc because it doesn't export some things glibc does
<headius> kitallis: I'm not sure if there are projects just using ThreadPoolExecutor but I'd be extremely surprised if not
<headius> sidekiq and resque are both more large job in nature; TPE and LMAX are smaller units of work generally (in my experience)
<headius> they also could be modified to use concurrent-ruby but it came later...most new threading projects I hear about are using concurrent-ruby
vtunka has quit [Quit: Leaving]
<GitHub120> [jruby] ivoanjo opened issue #4686: Cannot rescue from LocalJumpError after wrongly using break in proc https://git.io/vQs1h
bbrowning is now known as bbrowning_away
<GitHub103> [jruby] kares closed issue #3640: Date and DateTime parsing slower than 1.7 and much slower than MRI https://git.io/vgOLT
camlow325 has joined #jruby
kares_ has joined #jruby
camlow325 has quit [Client Quit]
<GitHub13> [jruby] headius opened issue #4687: Unimplemented Ruby 2.4 features https://git.io/vQsHw
<GitHub83> [jruby] headius pushed 4 new commits to ruby-2.4: https://git.io/vQsHH
<GitHub83> jruby/ruby-2.4 26ad41c Charles Oliver Nutter: [2.4] raise EINVAL for rebound UDPSocket
<GitHub83> jruby/ruby-2.4 b83ad0b Charles Oliver Nutter: [2.4] prepended should be private
<GitHub83> jruby/ruby-2.4 3faf772 Charles Oliver Nutter: Merge branch 'master' into ruby-2.4
<GitHub30> [jruby] headius force-pushed ruby-2.4 from 4a736f5 to b4c6577: https://git.io/vrlfe
<GitHub30> jruby/ruby-2.4 b4c6577 Charles Oliver Nutter: Tag remaining 2.4 specs for now. #4293 #4687
camlow325 has joined #jruby
<nirvdrum> enebo: I was on vacation last week. Do you still need help with something?
<headius> so hard to not get drawn into implementing more stuff when I'm trying to get 2.4 tests tagged
<kitallis> headius, that makes sense I guess
camlow325 has quit [Ping timeout: 240 seconds]
camlow325 has joined #jruby
<kitallis> headius, the LMAX implementation expects an execute method to exist on the TPE, I don't suppose I can replace my TPE construction with the Concurrent:TPE right? – it doesn't expose any such method, I'll have to call into java?
<headius> kitallis: so you want to pass the concurrent-ruby TPE to LMAX>
<headius> ?
<kitallis> headius, yeah
<kitallis> that probably doesn't work right
<headius> well I'm not sure
<kitallis> yeah, LMAX is looking for execute to be called on the TPE
<headius> if they back it with a normal Java executor it may be fine, once you dig it out
<headius> I'm not sure if they expose that or of the executor impl they wrap provides "execute" exactly, but that's the route I'd explore
<headius> any reason you want to use c-r's TPE instead of just creating your own?
<kitallis> no particular reason, I tried with the c-r TPE first, and it it didn't work, I can just as easily directly call my own
<kitallis> the c-r wrapper is just slightly more ruby-esque right? is it otherwise a transparent wrapper?
camlow325 has quit [Quit: WeeChat 1.5]
<headius> kitallis: I believe so but I have not looked at the impl in a while
<headius> there's a gitter room that's a good place to ask those questions
<GitHub0> [jruby] headius opened issue #4688: RubyEnumerator.SizeFn does not receive enough context https://git.io/vQsp6
camlow325 has joined #jruby
<codefinger> What's the proper way to coerce a Ruby URI to a java.net.URI? I'm getting the error `no method 'get' for arguments (org.jruby.RubyObjectVar9)` when calling a method with signature `get(java.net.URI)` and passing it a Ruby URI object.
<headius> codefinger: likely need to unwrap its string representation and create new
<headius> but we could add the capability to Ruby's URI as a feature
<codefinger> headius: if you think you'd accept that I'd gladly attempt a PR
<headius> sure
<codefinger> i'm trying to get as much java out of my ruby :)
<GitHub162> [jruby] kares pushed 8 new commits to master: https://git.io/vQGUG
<GitHub162> jruby/master f7b57b8 kares: more 19 suffixed methods to deprecate in BasicObject impl
<GitHub162> jruby/master 9d439e9 kares: deprecate send19 suffix-ed versions in RubyBasicObject, use send
<GitHub162> jruby/master 0b08a85 kares: get rid of 1.8 legacy method(name) impl & deprecate all 19 suffix-ed
bbrowning_away is now known as bbrowning
cschneid has quit [Ping timeout: 246 seconds]
cschneid has joined #jruby
<kitallis> headius, chrisseaton far from functional, but my first pass: https://github.com/kitallis/nadion
<kitallis> (if you folks have some time to eye-ball it)
<headius> codefinger: good call :-) An even better version would be to make it actually be a Java URI or similar with just sugar
<headius> kitallis: looks like you're on the right track to me
<headius> it will be nice to say there's a disruptor wrapper
rdubya has quit [Quit: Leaving.]
subbu is now known as subbu|busy
<GitHub72> [jruby] headius pushed 9 new commits to ruby-2.4: https://git.io/vQGE6
<GitHub72> jruby/ruby-2.4 b58ed3e Charles Oliver Nutter: [2.4] to_time should not remove timezone. #4293...
<GitHub72> jruby/ruby-2.4 26a4ba7 Charles Oliver Nutter: Coverage changes for 2.4. #4293
<GitHub72> jruby/ruby-2.4 b069a8a Charles Oliver Nutter: Properly handle negative Rational denominator in marshal. #4293...
camlow325 has quit [Quit: WeeChat 1.5]
drbobbeaty has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
subbu|busy is now known as subbu
<GitHub138> [jruby] headius pushed 1 new commit to ruby-2.4: https://git.io/vQG1u
<GitHub138> jruby/ruby-2.4 ec800e6 Charles Oliver Nutter: [2.4] Recursion guards for various Numeric fallbacks....
<GitHub37> [jruby] headius pushed 1 new commit to ruby-2.4: https://git.io/vQG1X
<GitHub37> jruby/ruby-2.4 adaea9b Charles Oliver Nutter: Merge remote-tracking branch 'origin/master' into ruby-2.4
kares_ has quit [Quit: Connection closed for inactivity]
bbrowning is now known as bbrowning_away
lanceball is now known as lance|afk
<GitHub74> [jruby] headius pushed 1 new commit to ruby-2.4: https://git.io/vQGS9
<GitHub74> jruby/ruby-2.4 8d3b9aa Charles Oliver Nutter: Fix regression in Thread#cause propagation tweak.
camlow325 has joined #jruby