Charles Oliver Nutter

Results 310 issues of Charles Oliver Nutter

A checklist of issues to fix to get Rails 7 working. Additional items will be added as needed. * [x] release patched net-http gem that feature-checks missing parts of jruby-openssl...

Several forms of aliasing should not warn when overwriting an existing entry, but they currently do on JRuby. This leads to warnings like the following: ``` /home/enebo/work/jruby/lib/ruby/gems/shared/gems/activesupport-7.0.2.3/lib/active_support/callbacks.rb:68: warning: previous definition...

Updated: Many gems have been incorporated (on our 3.0 branch) and some are in progress, so I am updating this description to include a complete list of the remaining gems...

This is likely coming from deeper in JRuby, like from Regexp logic, but here's a quick script based on the Windows failure from https://github.com/ruby/strscan/pull/25: ```ruby require 'strscan' s = StringScanner.new("foo...

`File.identical?` in CRuby compares two files using the following algorithm: * `fstat` each file's fd, or if either are a String path, `stat` the path. * Compare the stat structs'...

core
beginner

This is an experiment to change how we propagate non-local breaks (i.e. within a closure or eval) to address #7009 and allow detecting that the target frame is not part...

The native status of a thread will be more accurate when the thread is in a blocking or sleeping state, since we often cannot detect these states before making calls...

For #7009 we incorporated the fixes from #7029, which converts the bubbled-out IRBreakJump into a LocalJumpError before the thread terminates. This solves the original reported issue – that the thread...

The Ruby FFI library supports passing a snippit of Ruby code to C as though it were a C callback. Unfortunately this does not work on Apple Silicon (e.g. M1)...

ffi

The following failure was seen in one build for #6666 but appears to be intermittent: ``` IO#read raises IOError when stream is closed by another thread FAILED Expected # (Java::JavaLang::NullPointerException)...