1050件ヒット
[1-100件を表示]
(0.048秒)
モジュール
- Kernel (180)
キーワード
-
$ & (12) -
$ & # 39; (12) -
$ 1 (12) -
$ 10 (12) -
$ 11 (12) -
$ 2 (12) -
$ 3 (12) -
$ 4 (12) -
$ 5 (12) -
$ 6 (12) -
$ 7 (12) -
$ 8 (12) -
$ 9 (12) -
$ ` (12) -
$ ~ (12) -
BIG5
_ HKSCS (12) -
BIG5
_ HKSCS _ 2008 (12) -
BIG5
_ UAO (12) -
Big5
_ HKSCS (12) -
Big5
_ HKSCS _ 2008 (12) -
Big5
_ UAO (12) - CP1250 (12)
- CP1251 (12)
- CP1252 (12)
- CP1253 (12)
- CP1254 (12)
- CP1255 (12)
- CP1256 (12)
- CP1257 (12)
- CP50220 (12)
- CP50221 (12)
- CP51932 (12)
- CP874 (12)
- CP932 (12)
- CP936 (12)
- CP949 (12)
- CP950 (12)
- CP951 (12)
- CSWINDOWS31J (12)
- CsWindows31J (12)
-
EMACS
_ MULE (12) -
EUCJP
_ MS (12) -
EUC
_ JP _ MS (12) - EXXX (12)
-
Emacs
_ Mule (12) -
EucJP
_ ms (12) - GB18030 (12)
- GBK (12)
- GC (12)
-
ISO2022
_ JP (12) -
ISO
_ 2022 _ JP (12) - Lazy (12)
- PCK (12)
- Random (12)
- SJIS (12)
-
SJIS
_ SOFTBANK (12) -
SJIS
_ SoftBank (12) - Time (12)
-
UTF8
_ MAC (12) -
UTF8
_ SOFTBANK (12) -
UTF8
_ SoftBank (12) -
UTF
_ 8 _ HFS (12) -
UTF
_ 8 _ MAC (12) -
WINDOWS
_ 1250 (12) -
WINDOWS
_ 1251 (12) -
WINDOWS
_ 1252 (12) -
WINDOWS
_ 1253 (12) -
WINDOWS
_ 1254 (12) -
WINDOWS
_ 1255 (12) -
WINDOWS
_ 1256 (12) -
WINDOWS
_ 1257 (12) -
WINDOWS
_ 31J (12) -
WINDOWS
_ 874 (12) -
Windows
_ 1250 (12) -
Windows
_ 1251 (12) -
Windows
_ 1252 (12) -
Windows
_ 1253 (12) -
Windows
_ 1254 (12) -
Windows
_ 1255 (12) -
Windows
_ 1256 (12) -
Windows
_ 1257 (12) -
Windows
_ 31J (12) -
Windows
_ 874 (12) - chroot (12)
- define (6)
- inspect (12)
- name (12)
-
to
_ s (12)
検索結果
先頭5件
-
Data
. define(*args) -> Class (20.0) -
Data クラスに新しいサブクラスを作って、それを返します。
...by]{
class HTTPFetcher
Response = Data.define(:body)
NotFound = Data.define
def get(url)
# ダミーの実装
if url == "http://example.com/"
Response.new(body: "Current time is #{Time.now}")
else
NotFound.new
end
end
end
def fetch(url)
fetcher = HTTPFetcher.n......ew
case fetcher.get(url)
in HTTPFetcher::Response(body)
body
in HTTPFetcher::NotFound
:NotFound
end
end
p fetch("http://example.com/") # => "Current time is 2023-01-10 10:00:53 +0900"
p fetch("http://example.com/404") # => :NotFound
//}
@param args 値オブジェクトのク... -
Data
. define(*args) {|subclass| block } -> Class (20.0) -
Data クラスに新しいサブクラスを作って、それを返します。
...by]{
class HTTPFetcher
Response = Data.define(:body)
NotFound = Data.define
def get(url)
# ダミーの実装
if url == "http://example.com/"
Response.new(body: "Current time is #{Time.now}")
else
NotFound.new
end
end
end
def fetch(url)
fetcher = HTTPFetcher.n......ew
case fetcher.get(url)
in HTTPFetcher::Response(body)
body
in HTTPFetcher::NotFound
:NotFound
end
end
p fetch("http://example.com/") # => "Current time is 2023-01-10 10:00:53 +0900"
p fetch("http://example.com/404") # => :NotFound
//}
@param args 値オブジェクトのク... -
Encoding
:: CP936 -> Encoding (20.0) -
GBK エンコーディング
...GBK エンコーディング
中国で用いられる簡体字中国語のエンコーディングです。
@see http://www.iana.org/assignments/character-sets,
http://www.iana.org/assignments/charset-reg/GBK,
http://www.microsoft.com/globaldev/reference/dbcs/936.mspx... -
Encoding
:: CP951 -> Encoding (20.0) -
CP951 エンコーディングです。
...Windows で使われる Big5-HKSCS の亜種です。
@see http://www.microsoft.com/hk/hkscs/default.aspx,
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=0e6f5ac8-7baa-4571-b8e8-78b3b776afd7&DisplayLang=en,
http://blogs.msdn.com/b/shawnste/archive/2007/03/12/cp-951-hkscs.as... -
Encoding
:: EUCJP _ MS -> Encoding (20.0) -
eucJP-ms、Unix 系で用いられる、日本語 EUC 亜種です。
...。
EUC-JPに加え、Windowsの機種依存文字とユーザ定義文字を扱うことができます。
@see http://www2d.biglobe.ne.jp/~msyk/charcode/cp932/eucJP-ms.html,
http://legacy-encoding.osdn.jp/wiki/index.php?eucJP-ms,
http://blog.livedoor.jp/numa2666/archives/50980727.html... -
Encoding
:: EUC _ JP _ MS -> Encoding (20.0) -
eucJP-ms、Unix 系で用いられる、日本語 EUC 亜種です。
...。
EUC-JPに加え、Windowsの機種依存文字とユーザ定義文字を扱うことができます。
@see http://www2d.biglobe.ne.jp/~msyk/charcode/cp932/eucJP-ms.html,
http://legacy-encoding.osdn.jp/wiki/index.php?eucJP-ms,
http://blog.livedoor.jp/numa2666/archives/50980727.html... -
Encoding
:: EucJP _ ms -> Encoding (20.0) -
eucJP-ms、Unix 系で用いられる、日本語 EUC 亜種です。
...。
EUC-JPに加え、Windowsの機種依存文字とユーザ定義文字を扱うことができます。
@see http://www2d.biglobe.ne.jp/~msyk/charcode/cp932/eucJP-ms.html,
http://legacy-encoding.osdn.jp/wiki/index.php?eucJP-ms,
http://blog.livedoor.jp/numa2666/archives/50980727.html... -
Encoding
:: GBK -> Encoding (20.0) -
GBK エンコーディング
...GBK エンコーディング
中国で用いられる簡体字中国語のエンコーディングです。
@see http://www.iana.org/assignments/character-sets,
http://www.iana.org/assignments/charset-reg/GBK,
http://www.microsoft.com/globaldev/reference/dbcs/936.mspx... -
GC (20.0)
-
GC は Ruby インタプリタの「ゴミ集め(Garbage Collection)」を制御 するモジュールです。
...ないことも多い。そういう部分も含め計測する。
* newrelicのような高度なツールを使うことも考慮する
* http://tmm1.net/ruby21-rgengc/ には
RUBY_GC_HEAP_INIT_SLOTS や RUBY_GC_HEAP_FREE_SLOTS
のチューニングに関する簡単な指針が書......放はこの単位で行われる。
この「ページ」はOSのメモリ管理用語であるページとは異なる概念であることに注意。
==== 参考資料
* http://www.atdot.net/~ko1/activities/2014_rubyconf_ph_pub.pdf
* http://tmm1.net/ruby21-rgengc/
@see ObjectSpace... -
Encoding
:: BIG5 _ HKSCS -> Encoding (14.0) -
Big5-HKSCS エンコーディングです。
...Big5-HKSCS エンコーディングです。
香港で使われている Big5 の亜種です。
@see http://www.iana.org/assignments/charset-reg/Big5-HKSCS,
http://www.ogcio.gov.hk/en/business/tech_promotion/ccli/hkscs/...
