elia has quit [Read error: Connection reset by peer]
pawnbox_ has quit [Remote host closed the connection]
pawnbox has joined #jruby
skade has joined #jruby
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #jruby
robbyoconnor has quit [Read error: Connection reset by peer]
robbyoconnor has joined #jruby
mdedetrich has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pitr-ch has quit [Read error: No route to host]
pitr-ch has joined #jruby
yfeldblum has joined #jruby
<GitHub59>
[jruby] tgxworld opened issue #3364: Running Rails test with Jruby 9000 http://git.io/vcB4i
colinsurprenant has joined #jruby
pitr-ch has quit [Ping timeout: 255 seconds]
pitr-ch has joined #jruby
PragTob has joined #jruby
samphippen has joined #jruby
mdedetrich has joined #jruby
samphippen has quit [Ping timeout: 252 seconds]
donV has quit [Ping timeout: 268 seconds]
samphippen has joined #jruby
shellac has joined #jruby
drbobbeaty has joined #jruby
colinsurprenant has quit [Quit: colinsurprenant]
colinsurprenant has joined #jruby
colinsurprenant has quit [Quit: colinsurprenant]
drbobbeaty has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
samphippen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pitr-ch_ has joined #jruby
shellac has quit [Quit: Computer has gone to sleep.]
pitr-ch has quit [Ping timeout: 246 seconds]
pitr-ch_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
skade has quit [Quit: Computer has gone to sleep.]
skade has joined #jruby
skade has quit [Client Quit]
pjammer has joined #jruby
pitr-ch has joined #jruby
mdedetrich has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
drbobbeaty has joined #jruby
brauliobo has joined #jruby
pitr-ch_ has joined #jruby
pitr-ch has quit [Read error: Connection reset by peer]
pjammer has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pjammer has joined #jruby
pitr-ch_ has quit [Ping timeout: 240 seconds]
skade has joined #jruby
pitr-ch has joined #jruby
samphippen has joined #jruby
samphippen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
samphippen has joined #jruby
pjammer has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
cristianrasch has joined #jruby
samphippen has quit [Client Quit]
pjammer has joined #jruby
yorickpeterse has joined #jruby
<yorickpeterse>
headius: this is probably easier than the Twitters
pjammer has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<yorickpeterse>
headius: so Oga's generated code is cached, but in an LRU with 1024 entries possible by default. It could be that the particular benchmark needs more than that
<yorickpeterse>
which would then lead to recompilation and re-JIT'ing of code
nirvdrum has joined #jruby
AlHafoudh has quit [Ping timeout: 252 seconds]
AlHafoudh has joined #jruby
samphippen has joined #jruby
bbrowning_away is now known as bbrowning
<eregon>
foudn some bug due to the fact StaticScope only expect interned Java String for variable names, maybe all methods which add variables should call String#intern to make sure that inveriant holds?
<eregon>
foudn some bug due to the fact StaticScope only expect interned Java String for variable names, maybe all methods which add variables should call String#intern to make sure that invariant holds?
<eregon>
(sry for the duplicated message)
<nirvdrum>
eregon: I don't think headius or enebo join for another 30 - 60 minutes.
<eregon>
nirvdrum: ok, just giving them some backlog :)
<GitHub56>
[jruby] eregon pushed 2 new commits to master: http://git.io/vcRBZ
<GitHub56>
jruby/master 3fe04ea Benoit Daloze: Ensure the variable can be read from Binding#eval after Binding#local_variable_set
<GitHub56>
jruby/master ac88ab1 Benoit Daloze: [Truffle] Fix variable setup with a parent frame.
yfeldblum has quit [Ping timeout: 246 seconds]
<headius>
howdy howdy howdy
<eregon>
hello!
<headius>
eregon: we do have some asserts in some places
<headius>
yorickpeterse: I'll try running again and see how much re-gen I'm seeing
<headius>
how do I bump up the LRU?
<eregon>
headius: ah yeah in the constructor there is a nice assert :)
<eregon>
not for addVariable* and setVariables though
<eregon>
should I add the assert there too?
<headius>
yorickpeterse: it is definitely less on subsequent constructions of the processor, but still a large number...hundreds
<headius>
eregon: yeah might as well
<headius>
yorickpeterse: ok, it does seem to settle down but perf doesn't seem very good still
Aethenelle has joined #jruby
<GitHub76>
[jruby] eregon pushed 1 new commit to master: http://git.io/vcRuQ
<GitHub76>
jruby/master fc23b56 Benoit Daloze: Make sure names are interned in StaticScope since findVariable() relies on it.
cremes has quit [Quit: cremes]
samphippen has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<xardion>
having a weird issue with Process.spawn in jruby 9.0.1.0
<xardion>
it's failing silently when I give it options to redirect stdout and stderr
<xardion>
what's weird is that it works fine on another box
yfeldblum has joined #jruby
<nirvdrum>
xardion: I think some of that is implemented natively. Do your two machines have different operating systems or different architectures?
<xardion>
only slightly different kernel versions
<xardion>
it's working on 3.18.9, and not on 3.12.5
<xardion>
both are x86_64, Intel Xeon E5-2690 (the one running 3.18.9 is a v2)
<xardion>
that said, the one that is working is working with java 8u40, the one that isn't is 8u60
<xardion>
if I leave off the options, the spawn works fine
baroquebobcat has quit [Quit: baroquebobcat]
<xardion>
I'm going to try a simpler test, see if it is breaking in general, or if it's something specific to the executable I'm trying to spawn
skade has quit [Quit: Computer has gone to sleep.]
<xardion>
yeah, there's definitely an issue with the opts hash
<xardion>
pid = spawn(*['/bin/echo','"this is a test"'], :out=>['out','w'], :err=>['err','w'])
KevinCorcoran has quit [Remote host closed the connection]
<xardion>
that fails to spawn /bin/echo
<xardion>
if you remove :out and :err, it works fine
byteit101 has joined #jruby
<byteit101>
Is there a way I can define a class that I can become_java! it so that java sees a initialize method that is different from the constructor?
KevinCorcoran has joined #jruby
pawnbox has quit [Remote host closed the connection]
KevinCorcoran has quit [Ping timeout: 255 seconds]
subbu is now known as subbu|lunch
skade has joined #jruby
lanceball is now known as lance|afk
CustosLimen is now known as CustosL1men
CustosL1men is now known as CustosLimen
yfeldblum has quit [Ping timeout: 246 seconds]
samphippen has joined #jruby
KevinCorcoran has joined #jruby
KevinCorcoran has quit [Remote host closed the connection]
KevinCorcoran has joined #jruby
KevinCorcoran has quit [Remote host closed the connection]
KevinCorcoran has joined #jruby
lance|afk is now known as lanceball
subbu|lunch is now known as subbu
shellac has quit [Quit: Computer has gone to sleep.]
shellac has joined #jruby
_djbkd has quit [Remote host closed the connection]
shellac has quit [Quit: Computer has gone to sleep.]
_djbkd has joined #jruby
<headius>
xardion: that's strange
<headius>
those should be ok options
<headius>
file an issue for me
<headius>
byteit101: if you use java_signature I believe you can make any method into a Java-facing initialize
camlow32_ has joined #jruby
camlow32_ has quit [Read error: Connection reset by peer]
camlow325 has quit [Ping timeout: 264 seconds]
camlow325 has joined #jruby
camlow325 has quit [Remote host closed the connection]
pjammer has joined #jruby
bb010g has quit [Quit: Connection closed for inactivity]
baroquebobcat has joined #jruby
shellac has joined #jruby
camlow325 has joined #jruby
<GitHub117>
[jruby] nirvdrum pushed 1 new commit to master: http://git.io/vcu0R
<GitHub117>
jruby/master b6552a7 Kevin Menard: [Truffle] Encapsulated getting a ByteList from a String to allow alternative implementations.
pjammer has quit [Quit: My Mac has gone to sleep. ZZZzzz…]