[#43465] GVL改善案 — KOSAKI Motohiro <kosaki.motohiro@...>
小崎です
[#43467] [Q] thread->interrupt_flag が適切に排他制御されていないように見える — KOSAKI Motohiro <kosaki.motohiro@...>
kosakiです
ささだです.
> ささだです.
ささだです.
> ささだです.
自己解決しました
ささだです.
>> ということは危ないのは RUBY_VM_SET_INTERRUPT() がロストしたときに、タイムアウトなしの
>>> ということは危ないのは RUBY_VM_SET_INTERRUPT() がロストしたときに、タイムアウトなしの
[#43468] Re: [ruby-changes:19438] Ruby:r31478 (trunk): * test/date/*.rb: use skip /w messages. — KOSAKI Motohiro <kosaki.motohiro@...>
2011/5/8 tadf <[email protected]>:
> 表示したい場合を除いてはskipよりもreturnを使うようお願いしています。
>> 表示したい場合を除いてはskipよりもreturnを使うようお願いしています。
[#43476] [Ruby 1.9 - Feature #4653][Open] [PATCH 1/1] new method Enumerable#rude_map — Shyouhei Urabe <shyouhei@...>
遠藤です。
(05/08/2011 11:21 PM), Yusuke ENDOH wrote:
遠藤です。
卜部です。
At Mon, 9 May 2011 16:35:31 +0900,
遠藤です。
[#43493] [Ruby 1.9 - Feature #4657][Open] add option to hide skip messages on unit/test — Shota Fukumori <sorah@...>
> -q, --hide-skipでskipメッセージが表示されなくなります。
(05/09/2011 06:31 PM), Shota Fukumori wrote:
> (05/09/2011 06:31 PM), Shota Fukumori wrote:
2011/5/9 KOSAKI Motohiro <[email protected]>:
> 2011/5/9 KOSAKI Motohiro <[email protected]>:
[#43502] draft schedule of Ruby 1.9.3 — "Yuki Sonoda (Yugui)" <yugui@...>
-----BEGIN PGP SIGNED MESSAGE-----
Hi
Hello,
(ruby-coreはずしました)
こんにちは、なかむら(う)です。
こんにちは、なかむら(う)です。
[#43549] RubyKaigi2011に'CRuby'コミッタの皆さまを招待いたします(締切:2011-06-15) — Kakutani Shintaro <shintaro.kakutani@...>
'CRuby'コミッタの皆さまへ
[#43554] [Ruby 1.9 - Bug #4696][Assigned] thread.c#lock_func() が spurious wakeup unsafe — Motohiro KOSAKI <kosaki.motohiro@...>
[#43606] [Ruby 1.9 - Bug #4808][Open] thread_wait_for() eats 100% of CPU power — Hidetoshi Nagai <nagai@...>
> いつからかは把握できていませんが (少なくとも 1.9.2p0 では発生しません),
[ruby-dev:43512] Re: [ruby-changes:19313] Ruby:r31353 (trunk): * transcode.c (econv_init): fix rdoc.
2011/4/27 nobu <[email protected]>: > nobu 2011-04-27 00:52:35 +0900 (Wed, 27 Apr 2011) > > New Revision: 31353 > > http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31353 > > Log: > * transcode.c (econv_init): fix rdoc. > > Modified files: > trunk/transcode.c > > Index: transcode.c > =================================================================== > --- transcode.c (revision 31352) > +++ transcode.c (revision 31353) > @@ -3211,8 +3211,8 @@ > * :undef => :replace # replace undefined conversion > * :replace => string # replacement string ("?" or "\uFFFD" if not specified) > * :universal_newline => true # decorator for converting CRLF and CR to LF > - * :crlf_newline => true # decorator for converting LF to CRLF > - * :cr_newline => true # decorator for converting LF to CR > + * :crlf_newline => true # decorator for converting CRLF to LF > + * :cr_newline => true # decorator for converting CR to LF > * :xml => :text # escape as XML CharData. > * :xml => :attr # escape as XML AttValue > * integer form: 気がついたんですが、この変更って変じゃないですかね。 以下のように、:crlf_newline => true とすると、 \r\n は \r\r\n となることからわかるように、 もとの記述の LF to CRLF のほうが正しいんじゃないでしょうか。 % ./ruby -e ' ec = Encoding::Converter.new("EUC-JP", "Shift_JIS", :crlf_newline=>true) p ec.convert("\r\n") p ec.finish ' "\r\r\n" "" -- [田中 哲][たなか あきら][Tanaka Akira]