MSP-Greg
MSP-Greg
@bobecka Using `Time.now` for short operations may yield incorrect results. I would suggest using `Process.clock_gettime(Process::CLOCK_MONOTONIC)` for accurate time interval measurement. It's a lot more characters, but on macOS & Windows...
I've noticed this issue for several versions of SU. Some 3D programs I worked with could export a 'model' as a plane list, each defined by its vertices. Some would...
Its been a while... > I wonder, does Fix Model fix anything? I did write code to show the problem edges. So I assume not. > 'could not be automatically...
> In a concurrent environment, a race condition can occur and > This was an issue when running benchmarks Not sure what is causing the above, but the changes in...
@hsbt I ran the test file locally, and it passed. Also, ruby-loco's test-all in CI is passing. I added a mingw job to this repo, and ran CI in my...
Ignore everything above. The CI run that you listed is a backport to Ruby 3.1.x, and Windows 3.1 has always used OpenSSL 1.1.1, so it should be using the 1.1.1...
@codergeek121 JFYI, The JRuby tests are failing due to expired certs. The Ubuntu-20.04 Ruby 3.1 job is probably an intermittent issue. I'll rerun it... **EDIT:** Ubuntu-20.04 Ruby 3.1 job passed...
This a general comment, and I haven't had time to check on it. As an example, `Etc.nprocessors` reports 20 on my desktop, which is due to the Intel 'Hyper-threading'. I...
@dentarg I also had test problems locally. Wondering whether we should add `concurrent-ruby` to the main Gemfile, since 1) It's cached by setup-ruby 2) It's loaded on demand only if...