rcvalle has quit [Quit: rcvalle]
zacts has joined #jruby
<travis-ci> jruby/jruby (master:250d564 by Kevin Menard): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147292474)
Hobogrammer has joined #jruby
e_dub has joined #jruby
tjohnson has quit [Quit: Connection closed for inactivity]
enebo has joined #jruby
camlow325 has quit []
e_dub has quit [Read error: Connection reset by peer]
e_dub has joined #jruby
enebo has quit [Quit: enebo]
pawnbox has quit [Read error: Connection reset by peer]
<headius> chrisseaton, subbu: I could see it needing them for debugging but the JVM won't debug undeclared variables either
<headius> at least the Java-level JVM debuggers can't track variables not in the lvar table for the method, presumably *because* there will be variables introduced by javac
<headius> I'm also not sure I see why a JVM local would have to be "live"....when you attach a debugger, Hotspot deoptimizes a lot of code anyway
<travis-ci> jruby/jruby (java_call_sites:8e4317a by Charles Oliver Nutter): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147314392)
<GitHub172> [jruby] headius pushed 1 new commit to java_call_sites: https://git.io/vKQ4Y
<GitHub172> jruby/java_call_sites 221c6a9 Charles Oliver Nutter: Fix bad coercion mistake....
zacts has quit [Read error: Connection reset by peer]
e_dub has quit [Quit: ZZZzzz…]
prasunanand has quit [Ping timeout: 258 seconds]
pawnbox has joined #jruby
zacts has joined #jruby
e_dub has joined #jruby
<travis-ci> jruby/jruby (java_call_sites:221c6a9 by Charles Oliver Nutter): The build failed. (https://travis-ci.org/jruby/jruby/builds/147350896)
pilhuhn has quit [Read error: Connection reset by peer]
pilhuhn has joined #jruby
<GitHub177> [jruby] bjfish pushed 1 new commit to master: https://git.io/vKQgG
<GitHub177> jruby/master 017dcb6 Brandon Fish: [Truffle] Untag passing struct spec
<travis-ci> jruby/jruby (java_call_sites:221c6a9 by Charles Oliver Nutter): The build passed. (https://travis-ci.org/jruby/jruby/builds/147350896)
johnsonch is now known as johnsonch_afk
pawnbox has quit [Ping timeout: 260 seconds]
<GitHub189> [jruby] headius pushed 1 new commit to java_call_sites: https://git.io/vKQaT
<GitHub189> jruby/java_call_sites 11b3d79 Charles Oliver Nutter: Call site caching for Fixnum.
<travis-ci> jruby/jruby (master:017dcb6 by Brandon Fish): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147361834)
pawnbox has joined #jruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
yipdw has quit [Ping timeout: 250 seconds]
<GitHub192> [jruby] headius pushed 2 new commits to java_call_sites: https://git.io/vKQwJ
<GitHub192> jruby/java_call_sites cc7cd9a Charles Oliver Nutter: Call site caching for Comparable.
<GitHub192> jruby/java_call_sites d2e6c5b Charles Oliver Nutter: Use new call site caching for builtin check. Fixes #3976....
<GitHub153> [jruby] headius closed pull request #4009: Remove hardcoded base impl (master...allow-str-cmp-override) https://git.io/vKcoH
<GitHub137> [jruby] bjfish pushed 1 new commit to master: https://git.io/vKQw7
<GitHub137> jruby/master b82f780 Brandon Fish: [Truffle] Fix Fixnum#^ spec
yipdw has joined #jruby
<GitHub133> [jruby] headius pushed 1 new commit to java_call_sites: https://git.io/vKQrF
<GitHub133> jruby/java_call_sites 30691a9 Charles Oliver Nutter: Call site caching for String.
<GitHub34> [jruby] bjfish pushed 1 new commit to master: https://git.io/vKQoI
<GitHub34> jruby/master 424467a Brandon Fish: [Truffle] Fix Encoding error bytes specs
thedarkone2 has quit [Quit: thedarkone2]
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #jruby
skade has joined #jruby
yfeldblum has quit [Ping timeout: 250 seconds]
<travis-ci> jruby/jruby (master:b82f780 by Brandon Fish): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147370440)
odix67 has joined #jruby
<GitHub17> [jruby] Jeiwan opened issue #4028: Base64.decode64 incorrect result when missing paddings https://git.io/vKQir
raeoks has joined #jruby
zacts has quit [Quit: WeeChat 1.4]
Uday has joined #jruby
<Uday> I have sent the following message to jruby mailing list but it is waiting for approval. So posting it here to see if someone can help.
<Uday> Hi,
<Uday> We are getting a lot of Java::JavaNioChannels::NotYetConnectedException when doing a http connection. This happens only when there is lot of load. I could reproduce it with production machine configuration and with certain number of concurrent requests in load testing environment.
<Uday> First few lines of exception stack trace are:
<Uday> Java::JavaNioChannels::NotYetConnectedException: null
<Uday> from SocketChannelImpl.java:274:in `ensureWriteOpen'
Uday has quit [Excess Flood]
Uday has joined #jruby
<Uday> We are getting a lot of Java::JavaNioChannels::NotYetConnectedException when doing a http connection. This happens only when there is lot of load. I could reproduce it with production machine configuration and with certain number of concurrent requests in load testing environment.
yfeldblum has joined #jruby
<Uday> While analysing, I noticed that RubyTCPSocket creates non blocking socket and although the methods called like connect, select return boolean values, the return value is not checked (code link here). I am suspecting if there could be a scenario where they return false and some other action need to be taken. I am learning more about these apis to de
<Uday> bug this but can someone with more knowledge about java socket programming confirm if my suspicion is right or not.
<Uday> o where they return false and some other action need to be taken. I am learning more about these apis to debug this but can someone with more knowledge about java socket programming confirm if my suspicion is right or not.
<Uday> While analysing, I noticed that RubyTCPSocket creates non blocking socket and although the methods called like connect, select return boolean values, the return value is not checked (code link here https://github.com/jruby/jruby/blob/master/core/src/main/java/org/jruby/ext/socket/RubyTCPSocket.java#L108). I am suspecting if there could be a scenari
<Uday> Even though the error is reproducible on load testing environment, I am not sure how to troubleshoot this issue to get more info. Any suggestion on tools or approach would help.
Uday has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Uday has joined #jruby
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #jruby
<travis-ci> jruby/jruby (master:424467a by Brandon Fish): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147372668)
pitr-ch has joined #jruby
etehtsea has joined #jruby
prasunanand has joined #jruby
pawnbox has quit [Remote host closed the connection]
Uday has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Uday has joined #jruby
<GitHub54> [jruby] eregon closed pull request #4007: Remove duplicated line. (master...snim2-fix-callgraph2html-typo) https://git.io/vKZxF
<GitHub197> [jruby] eregon pushed 2 new commits to master: https://git.io/vKQSU
<GitHub197> jruby/master c676446 Sarah Mount: Remove duplicated line.
<GitHub197> jruby/master b2bd835 Benoit Daloze: Merge pull request #4007 from snim2/snim2-fix-callgraph2html-typo...
pawnbox has joined #jruby
Uday has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Uday has joined #jruby
Specialist has joined #jruby
zacts has joined #jruby
shellac has joined #jruby
skade has quit [Read error: Connection reset by peer]
chrisseaton has quit [Ping timeout: 250 seconds]
chrisseaton has joined #jruby
vtunka has joined #jruby
Uday has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Uday has joined #jruby
<GitHub5> [jruby] eregon pushed 2 new commits to master: https://git.io/vKQ5v
<GitHub5> jruby/master 2d09106 Benoit Daloze: [Truffle] JT: automatically recompile ruby.su when needed.
<GitHub5> jruby/master 3adcf7a Benoit Daloze: [Truffle] Fix warnings in ruby.h/ruby.c.
<GitHub124> [jruby] eregon pushed 1 new commit to master: https://git.io/vKQ5b
<GitHub124> jruby/master 2fc5177 Benoit Daloze: [Truffle] Fix bad rename from 3d19518dbae3d98e41380b5fa0a37158f1b6c3a6.
<travis-ci> jruby/jruby (master:b2bd835 by Benoit Daloze): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147393205)
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
blaxter has joined #jruby
Uday has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Specialist has quit [Remote host closed the connection]
jimbaker has quit [Ping timeout: 264 seconds]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
yfeldblum has quit [Ping timeout: 250 seconds]
vtunka has quit [Quit: Leaving]
vtunka has joined #jruby
zacts has quit [Ping timeout: 252 seconds]
skade has joined #jruby
Talltree has quit [Quit: Talltree]
Talltree has joined #jruby
drbobbeaty has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
donV has joined #jruby
<donV> Hi all!
drbobbeaty has joined #jruby
skade has quit [Read error: Connection reset by peer]
skade has joined #jruby
yfeldblum has joined #jruby
zacts has joined #jruby
skade has quit [Client Quit]
drbobbeaty has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
TheWhip has joined #jruby
donV has quit [Quit: donV]
etehtsea has quit [Quit: Computer has gone to sleep.]
donV has joined #jruby
donValentin has joined #jruby
donV has quit [Ping timeout: 276 seconds]
<GitHub80> [jruby] areman opened issue #4029: UnsupportedOperationException: BUG: invoking UndefinedMethod.call; report at http://bugs.jruby.org https://git.io/vK7qo
pawnbox has quit [Remote host closed the connection]
TheWhip has quit [Remote host closed the connection]
pitr-ch has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pitr-ch has joined #jruby
TheWhip has joined #jruby
pawnbox has joined #jruby
yfeldblum has quit [Ping timeout: 250 seconds]
drbobbeaty has joined #jruby
pawnbox has quit [Remote host closed the connection]
<travis-ci> jruby/jruby (master:2fc5177 by Benoit Daloze): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147403052)
pawnbox has joined #jruby
e_dub has quit [Quit: ZZZzzz…]
<GitHub40> [jruby] eregon pushed 2 new commits to master: https://git.io/vK7R9
<GitHub40> jruby/master fea7f54 Benoit Daloze: [Truffle] Move the logic to copy classes to Module#initialize_copy like MRI.
<GitHub40> jruby/master 78d20cd Benoit Daloze: Add note in Class#dup spec
bbrowning_away is now known as bbrowning
prasunanand has quit [Ping timeout: 260 seconds]
prasunanand has joined #jruby
tcrawley-away is now known as tcrawley
<GitHub144> [jruby] eregon pushed 1 new commit to master: https://git.io/vK7zv
<GitHub144> jruby/master 69b9cab Benoit Daloze: [Truffle] Fix the number of arguments to create a String in StringLiteralNode.
Specialist has joined #jruby
<GitHub6> [jruby] eregon pushed 1 new commit to master: https://git.io/vK72m
<GitHub6> jruby/master 65d1c19 Benoit Daloze: [Truffle] Remove unused imports.
e_dub has joined #jruby
pitr-ch has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pitr-ch has joined #jruby
TheWhip has quit [Remote host closed the connection]
vtunka has quit [Quit: Leaving]
vtunka has joined #jruby
pawnbox has quit [Remote host closed the connection]
johnsonch_afk is now known as johnsonch
pawnbox has joined #jruby
<GitHub37> [jruby] eregon pushed 2 new commits to master: https://git.io/vK7Kp
<GitHub37> jruby/master 23f19b3 Benoit Daloze: [Truffle] Fix a number of bad String allocations.
<GitHub37> jruby/master c25e2af Benoit Daloze: [Truffle] Remove useless allocate node....
<GitHub71> [jruby] eregon pushed 1 new commit to truffle-head: https://git.io/vK769
<GitHub71> jruby/truffle-head 8369f8a Benoit Daloze: Merge remote-tracking branch 'origin/master' into truffle-head
<GitHub189> [jruby] eregon pushed 1 new commit to truffle-head: https://git.io/vK7it
<GitHub189> jruby/truffle-head 2decc03 Benoit Daloze: [Truffle] Update to latest truffle.
<travis-ci> jruby/jruby (master:fea7f54 by Benoit Daloze): The build passed. (https://travis-ci.org/jruby/jruby/builds/147454421)
raeoks has quit [Quit: Textual IRC Client: www.textualapp.com]
vtunka has quit [Quit: Leaving]
enebo has joined #jruby
e_dub has quit [Quit: ZZZzzz…]
<GitHub168> [jruby] ketan opened issue #4030: Issues with launching sub-jruby https://git.io/vK7Dv
donValentin has quit [Ping timeout: 265 seconds]
<nirvdrum> enebo: Did you happen to pull jcodings before pushing the snapshot?
<nirvdrum> I'm still seeing problems with the snapshot from yesterday.
<enebo> nirvdrum: I did a git pull yeah
<enebo> nirvdrum: but let me verify that
<nirvdrum> Strange.
<enebo> nirvdrum: what is your last commit?
<enebo> 64e5fb30ceec1e5dbd0e420ebfd4742372e011dc fir ne
vtunka has joined #jruby
<enebo> ignore my poor typing
<enebo> I did a ‘mvn deploy’ only do I need to close/release on a snapshot?
<enebo> I did not think so
prasunanand has quit [Ping timeout: 276 seconds]
e_dub has joined #jruby
<travis-ci> jruby/jruby (master:69b9cab by Benoit Daloze): The build failed. (https://travis-ci.org/jruby/jruby/builds/147461190)
subbu is now known as subbu|away
thedarkone2 has joined #jruby
camlow325 has joined #jruby
knu has quit [Read error: Connection reset by peer]
camlow32_ has joined #jruby
camlow325 has quit [Read error: Connection reset by peer]
e_dub has quit [Quit: ZZZzzz…]
e_dub has joined #jruby
tjohnson has joined #jruby
knu has joined #jruby
e_dub has quit [Client Quit]
<nirvdrum> enebo: I'm not sure what close/release is.
<enebo> nirvdrum: oh just a a sonatype thing
<enebo> nirvdrum: for published artifacts that are releases there are some web/remote extra steps to really deploy
<enebo> nirvdrum: since if you make a mistake you cannot pull an artifact
<headius> just deploy
<enebo> headius: yeah it is what I thought but I guess it has been several months since last snapshot for me
<headius> and good morning!
<nirvdrum> enebo: Okay. I can decompile and see if it's really what I expect.
<enebo> I do not know how the dating of the jars resolve to the plain SNAPSHOT label but I still have this in my 3.5 million line emacs shell buffer :)
<enebo> nirvdrum: but the link I gave works so compare this against what you have in .m2 and make sure it is not some other weird crap at play
vtunka has quit [Quit: Leaving]
<nirvdrum> Thanks. On a call at the moment, but I'll check in a bit.
<travis-ci> jruby/jruby (master:65d1c19 by Benoit Daloze): The build failed. (https://travis-ci.org/jruby/jruby/builds/147465638)
<GitHub96> [jruby] bjfish pushed 1 new commit to master: https://git.io/vK7bI
<GitHub96> jruby/master f6abd1f Brandon Fish: [Truffle] Untag passing SystemExit#initialize spec
prasunanand has joined #jruby
e_dub has joined #jruby
TheWhip has joined #jruby
subbu|away is now known as subbu
odix67 has quit [Quit: Leaving.]
<GitHub109> [jruby] joankaradimov opened pull request #4031: Make JRuby compatible with capybara-webkit (and possibly other gems) (master...capybara-webkit-compatibility) https://git.io/vK7pv
<travis-ci> jruby/jruby (master:c25e2af by Benoit Daloze): The build passed. (https://travis-ci.org/jruby/jruby/builds/147476604)
donV has joined #jruby
pawnbox_ has joined #jruby
pawnbox has quit [Read error: Connection reset by peer]
zacts has quit [Ping timeout: 250 seconds]
jimbaker` has joined #jruby
subbu is now known as subbu|meeting
jimbaker` is now known as jimbaker
jimbaker has quit [Changing host]
jimbaker has joined #jruby
TheWhip has quit [Remote host closed the connection]
pitr-ch has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pitr-ch has joined #jruby
zacts has joined #jruby
<travis-ci> jruby/jruby (truffle-head:8369f8a by Benoit Daloze): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147478330)
subbu|meeting is now known as subbu
pilhuhn is now known as pil-afk
pitr-ch has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ebarrett has quit [Quit: WeeChat 1.4]
ebarrett has joined #jruby
<travis-ci> jruby/jruby (truffle-head:2decc03 by Benoit Daloze): The build has errored. (https://travis-ci.org/jruby/jruby/builds/147478990)
<zacts> does jruby mix well with Clojure?
bb010g has joined #jruby
<GitHub59> [jruby] subbuss pushed 1 new commit to master: https://git.io/vK5JO
<GitHub59> jruby/master d9203da Subramanya Sastry: Add regression spec for #4014...
<GitHub102> [jruby] eregon pushed 1 new commit to truffle-head: https://git.io/vK5Um
<GitHub102> jruby/truffle-head d2f2fcf Benoit Daloze: [Truffle] Do not use the build pack on truffle-head as it won't contain the latest truffle.
<nirvdrum> enebo: I'd love to know what our build is actually doing. I think chrisseaton reported the crazy amount of stuff being downloaded to mkristian once before. I just blew away my ~/.m2/repository and rebuilt jruby. It fetched 7 different versions of jcodings.
<headius> zacts: sure, we have lots of folks combining them
<nirvdrum> 13 versions of jffi.
<headius> usually JRuby is used as the front-end language with Clojure doing some data-processing or other business logic in the backend
<chrisseaton> nirvdrum: yeah, it's all listed in that build pack repo
<chrisseaton> nirvdrum: about 400 MB I think
<headius> nirvdrum: some of that is caused by open-ended dependencies
<chrisseaton> d
<headius> but we shouldn't have many (any) of those
<headius> it may also be negotiating many projects that have different deps
<headius> like all the JNR projects may not be up-to-date on same jffi
<nirvdrum> headius: Wouldn't one of them satisfy the requirement though?
<headius> zacts: all the JVM languages are usable from JRuby without a lot of fuss...it's one of our biggest value-adds
<headius> nirvdrum: a lower one might satisfy earlier requirements, and then a later one needs a newer jffi
<headius> but I would have thought that would resolve to one artifact earlier in the build
<headius> you should post your build log
<headius> or what's the maven command for printing dependency tree?
<enebo> yeah it was not long ago we resolved the whole jnr-* chain of deps for a core build
<lopex> mvn project-info-reports:dependencies gives a full report
<lopex> mvn dependency:tree is just a tree alone
<GitHub6> [jruby] subbuss pushed 1 new commit to master: https://git.io/vK5Tm
<GitHub6> jruby/master af57bdd Subramanya Sastry: Fix up copy-paste snafu in regression spec
shellac has quit [Quit: Leaving]
<headius> ok
thedarkone2 has quit [Quit: thedarkone2]
donV has quit [Quit: donV]
zacts has quit [Quit: WeeChat 1.4]
donV has joined #jruby
<travis-ci> jruby/jruby (master:f6abd1f by Brandon Fish): The build is still failing. (https://travis-ci.org/jruby/jruby/builds/147504109)
<donV> Hi all!
skade has joined #jruby
qmx has quit [Quit: ZNC - http://znc.in]
rcvalle has joined #jruby
pawnbox_ has quit [Remote host closed the connection]
blaxter has quit [Ping timeout: 250 seconds]
qmx has joined #jruby
<nirvdrum> enebo: It was my fault. I don't think "mvn clean" deletes the jruby-complete.jar and it wasn't being overwritten either for whatever reason.
pawnbox has joined #jruby
thedarkone2 has joined #jruby
mattwildig has joined #jruby
mattwildig has quit [Remote host closed the connection]
jimbaker has quit [Ping timeout: 250 seconds]
<travis-ci> jruby/jruby (master:d9203da by Subramanya Sastry): The build was broken. (https://travis-ci.org/jruby/jruby/builds/147523475)
mattwildig has joined #jruby
jimbaker has joined #jruby
jimbaker has quit [Changing host]
jimbaker has joined #jruby
<travis-ci> jruby/jruby (truffle-head:d2f2fcf by Benoit Daloze): The build passed. (https://travis-ci.org/jruby/jruby/builds/147525047)
skade has quit [Ping timeout: 258 seconds]
<GitHub28> [jruby] bjfish pushed 1 new commit to master: https://git.io/vK58t
<GitHub28> jruby/master a32dae5 Brandon Fish: [Truffle] Fix Random#bytes spec
pil-afk is now known as pilhuhn
prasunanand has quit [Ping timeout: 276 seconds]
subbu is now known as subbu|lunch
prasunanand has joined #jruby
mattwildig has quit [Remote host closed the connection]
e_dub has quit [Quit: ZZZzzz…]
Specialist has quit [Ping timeout: 258 seconds]
bbrowning has quit [Ping timeout: 276 seconds]
e_dub has joined #jruby
<GitHub121> [jruby] bjfish pushed 1 new commit to master: https://git.io/vK5gD
<GitHub121> jruby/master 784e34b Brandon Fish: [Truffle] Fix Random#bytes string creation
bbrowning has joined #jruby
subbu|lunch is now known as subbu
<GitHub55> [jruby] headius pushed 1 new commit to java_call_sites: https://git.io/vK5Vk
<GitHub55> jruby/java_call_sites 49bbe5e Charles Oliver Nutter: Call site caching for Array#max and min.
Specialist has joined #jruby
<travis-ci> jruby/jruby (master:a32dae5 by Brandon Fish): The build was fixed. (https://travis-ci.org/jruby/jruby/builds/147551532)
pilhuhn has quit [Quit: Leaving...]
skade has joined #jruby
skade has quit [Remote host closed the connection]
<travis-ci> jruby/jruby (master:784e34b by Brandon Fish): The build was broken. (https://travis-ci.org/jruby/jruby/builds/147564852)
skade has joined #jruby
skade has quit [Client Quit]
tcrawley is now known as tcrawley-away
skade has joined #jruby
<GitHub177> [jruby] headius pushed 1 new commit to java_call_sites: https://git.io/vK51S
<GitHub177> jruby/java_call_sites bf60762 Charles Oliver Nutter: Back off type check for Array#min/max a bit.
subbu is now known as subbu|away
<GitHub155> [jruby] bjfish pushed 1 new commit to master: https://git.io/vK5yK
<GitHub155> jruby/master ef50891 Brandon Fish: [Truffle] Fix Comparable#==
subbu|away is now known as subbu
e_dub has quit [Quit: ZZZzzz…]
camlow325 has joined #jruby
camlow325 has quit [Remote host closed the connection]
camlow325 has joined #jruby
camlow32_ has quit [Ping timeout: 240 seconds]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
<travis-ci> kares/jruby (master:68ea537 by kares): The build was broken. (https://travis-ci.org/kares/jruby/builds/147573039)
e_dub has joined #jruby
bbrowning is now known as bbrowning_away
camlow325 has quit [Remote host closed the connection]
camlow325 has joined #jruby
camlow325 has quit [Remote host closed the connection]
camlow325 has joined #jruby
drbobbeaty has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<GitHub106> [jruby] headius pushed 2 new commits to java_call_sites: https://git.io/vK5dq
<GitHub106> jruby/java_call_sites aa1f5df Charles Oliver Nutter: NEVER cache undefined methods and add isBuiltin convenience.
<GitHub106> jruby/java_call_sites eef603d Charles Oliver Nutter: Use new CachingCallSite.isBuiltin for builtin check.
prasunanand has quit [Ping timeout: 265 seconds]
<GitHub31> [jruby] headius force-pushed java_call_sites from eef603d to 52ef5b2: https://git.io/vKPOR
<GitHub31> jruby/java_call_sites 52ef5b2 Charles Oliver Nutter: Use new CachingCallSite.isBuiltin for builtin check....
<GitHub132> [jruby] headius pushed 2 new commits to master: https://git.io/vK5dx
<GitHub132> jruby/master 1848d77 Charles Oliver Nutter: NEVER cache undefined methods and add isBuiltin convenience.
<GitHub132> jruby/master 4fcbe61 Charles Oliver Nutter: Use new CachingCallSite.isBuiltin for builtin check....
<GitHub56> [jruby] headius closed issue #4029: UnsupportedOperationException: BUG: invoking UndefinedMethod.call; (doing warble) https://git.io/vK7qo
yfeldblum has joined #jruby
johnsonch is now known as johnsonch_afk
<GitHub167> [jruby] headius pushed 1 new commit to java_call_sites: https://git.io/vK5bp
<GitHub167> jruby/java_call_sites e85a8d2 Charles Oliver Nutter: Use new isBuiltin for call-site builtin checks.
<GitHub178> [jruby] headius pushed 1 new commit to java_call_sites: https://git.io/vK5Nv
<GitHub178> jruby/java_call_sites fb31d66 Charles Oliver Nutter: Merge branch 'master' into java_call_sites
e_dub has quit [Quit: ZZZzzz…]
thedarkone2 has quit [Quit: thedarkone2]
skade has quit [Quit: Computer has gone to sleep.]
<GitHub159> [jruby] enebo pushed 1 new commit to master: https://git.io/vK5xq
<GitHub159> jruby/master 4f2ec94 Thomas E. Enebo: Add missing test/spec for GH #4029 UnsupportedOperationException: BUG: invoking UndefinedMethod.call; (doing warble)
camlow325 has quit [Remote host closed the connection]
enebo has quit [Quit: enebo]
camlow325 has joined #jruby
zacts has joined #jruby
camlow325 has quit [Read error: Connection reset by peer]
camlow325 has joined #jruby
camlow32_ has joined #jruby
camlow325 has quit [Read error: Connection reset by peer]
thedarkone2 has joined #jruby
camlow32_ has quit [Read error: Connection reset by peer]
camlow325 has joined #jruby
Specialist has quit [Ping timeout: 250 seconds]
e_dub has joined #jruby
<travis-ci> jruby/jruby (master:ef50891 by Brandon Fish): The build is still failing. (https://travis-ci.org/jruby/jruby/builds/147587162)
camlow32_ has joined #jruby
camlow325 has quit [Read error: Connection reset by peer]
donV has quit [Quit: donV]
<travis-ci> jruby/jruby (master:4fcbe61 by Charles Oliver Nutter): The build was fixed. (https://travis-ci.org/jruby/jruby/builds/147599203)
zacts has quit [Ping timeout: 258 seconds]
rcvalle has quit [Quit: rcvalle]
camlow325 has joined #jruby
camlow32_ has quit [Read error: Connection reset by peer]
camlow325 has quit [Read error: Connection reset by peer]
camlow32_ has joined #jruby
camlow32_ has quit [Read error: Connection reset by peer]
camlow325 has joined #jruby
camlow325 has quit [Read error: Connection reset by peer]
camlow325 has joined #jruby
<travis-ci> jruby/jruby (java_call_sites:fb31d66 by Charles Oliver Nutter): The build was broken. (https://travis-ci.org/jruby/jruby/builds/147601827)
enebo has joined #jruby