759件ヒット
[1-100件を表示]
(0.014秒)
別のキーワード
ライブラリ
- ビルトイン (24)
- matrix (16)
-
net
/ ftp (260) - openssl (12)
- pathname (15)
- rake (12)
-
rinda
/ rinda (24) -
rinda
/ tuplespace (156) -
rubygems
/ package / tar _ input (36) -
rubygems
/ package / tar _ reader (24) -
rubygems
/ package / tar _ reader / entry (144) -
rubygems
/ source _ info _ cache _ entry (36)
クラス
-
Gem
:: Package :: TarInput (36) -
Gem
:: Package :: TarReader (24) -
Gem
:: Package :: TarReader :: Entry (144) -
Gem
:: SourceInfoCacheEntry (36) - Matrix (16)
-
Net
:: FTP (30) -
Net
:: FTP :: MLSxEntry (230) -
OpenSSL
:: X509 :: Name (12) - Pathname (15)
-
Rake
:: FileList (12) -
Rinda
:: TupleEntry (132) -
Rinda
:: TupleSpace (24) -
Rinda
:: TupleSpaceProxy (24)
モジュール
- Enumerable (24)
キーワード
- [] (12)
-
add
_ entry (12) - alive? (12)
- appendable? (10)
-
bytes
_ read (12) - cancel (12)
- canceled? (12)
- charset (10)
- close (12)
- closed? (12)
- creatable? (10)
- create (10)
- deletable? (10)
- directory? (22)
-
directory
_ makable? (10) - each (24)
-
each
_ entry (51) - enterable? (10)
-
entrywise
_ product (8) - eof? (12)
- exclude (12)
- expired? (12)
- expires (12)
- expires= (12)
-
extract
_ entry (12) - facts (10)
- fetch (12)
- file? (22)
-
full
_ name (12) - getc (12)
-
hadamard
_ product (8) - header (12)
- lang (10)
- listable? (10)
-
media
_ type (10) - mlsd (20)
- mlst (10)
- modify (10)
- notify (24)
- pathname (10)
- perm (10)
- pos (12)
- purgeable? (10)
- read (12)
- readable? (10)
- refresh (12)
- renamable? (10)
- renew (12)
- rewind (12)
- size (34)
-
source
_ index (12) - type (10)
- unique (10)
- value (12)
- writable? (10)
- write (24)
-
zipped
_ stream (12)
検索結果
先頭5件
-
Matrix
# entrywise _ product(m) -> Matrix (18101.0) -
アダマール積(要素ごとの積)を返します。
アダマール積(要素ごとの積)を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行や列の要素数が一致しない時に発生します。
//emlist[例][ruby]{
require 'matrix'
Matrix[[1,2], [3,4]].hadamard_product(Matrix[[1,2], [3,2]]) # => Matrix[[1, 4], [9, 8]]
//} -
Gem
:: Package :: TarInput # extract _ entry(destdir , entry , expected _ md5sum = nil) (6225.0) -
指定された destdir に entry を展開します。
...指定された destdir に entry を展開します。
@param destdir 展開先のディレクトリを指定します。
@param entry エントリを指定します。
@param expected_md5sum 期待する MD5 チェックサムを指定します。
@raise Gem::Package::BadCheckSum チェック... -
Enumerable
# each _ entry -> Enumerator (6109.0) -
ブロックを各要素に一度ずつ適用します。
...配列として渡されます。
//emlist[例][ruby]{
class Foo
include Enumerable
def each
yield 1
yield 1,2
end
end
Foo.new.each_entry{|o| print o, " -- "}
# => 1 -- [1, 2] --
//}
ブロックを省略した場合は Enumerator が返されます。
@see Enumerable#slice_before... -
Enumerable
# each _ entry {|obj| block} -> self (6109.0) -
ブロックを各要素に一度ずつ適用します。
...配列として渡されます。
//emlist[例][ruby]{
class Foo
include Enumerable
def each
yield 1
yield 1,2
end
end
Foo.new.each_entry{|o| print o, " -- "}
# => 1 -- [1, 2] --
//}
ブロックを省略した場合は Enumerator が返されます。
@see Enumerable#slice_before... -
Pathname
# each _ entry -> Enumerator (6109.0) -
Dir.foreach(self.to_s) {|f| yield Pathname.new(f) } と同じです。
...です。
ブロックを省略した場合は Enumerator を返します。
//emlist[例][ruby]{
require "pathname"
Pathname("/usr/local").each_entry {|f| p f }
# => #<Pathname:.>
# => #<Pathname:..>
# => #<Pathname:bin>
# => #<Pathname:etc>
# => #<Pathname:include>
# => #<Pathname:lib>
# => #<... -
Pathname
# each _ entry {|pathname| . . . } -> nil (6109.0) -
Dir.foreach(self.to_s) {|f| yield Pathname.new(f) } と同じです。
...Dir.foreach(self.to_s) {|f| yield Pathname.new(f) } と同じです。
//emlist[例][ruby]{
require "pathname"
Pathname("/usr/local").each_entry {|f| p f }
# => #<Pathname:.>
# => #<Pathname:..>
# => #<Pathname:bin>
# => #<Pathname:etc>
# => #<Pathname:include>
# => #<Pathname:lib>
# => #<Pathna......です。
ブロックを省略した場合は Enumerator を返します。
//emlist[例][ruby]{
require "pathname"
Pathname("/usr/local").each_entry {|f| p f }
# => #<Pathname:.>
# => #<Pathname:..>
# => #<Pathname:bin>
# => #<Pathname:etc>
# => #<Pathname:include>
# => #<Pathname:lib>
# => #<... -
OpenSSL
:: X509 :: Name # add _ entry(oid , value , type = nil) (6102.0) -
新しい属性を追加します。
新しい属性を追加します。
@param oid 属性型文字列
@param value 属性値文字列
@param type 属性値の(ASN.1の)型、省略時は OpenSSL::X509::Name::OBJECT_TYPE_TEMPLATE と oid から型が決まる
@raise OpenSSL::X509::NameError 属性の追加に失敗した場合に発生します -
Gem
:: Package :: TarReader # each _ entry {|entry| . . . } (3204.0) -
ブロックに一つずつエントリを渡して評価します。
ブロックに一つずつエントリを渡して評価します。 -
Gem
:: Package :: TarReader :: Entry # bytes _ read -> Integer (3001.0) -
自身から読み込んだバイト数を返します。
自身から読み込んだバイト数を返します。 -
Gem
:: Package :: TarReader :: Entry # close -> true (3001.0) -
自身を close します。
自身を close します。