420件ヒット
[401-420件を表示]
(0.005秒)
クラス
-
Etc
:: Group (96) -
Etc
:: Passwd (312) - IO (12)
キーワード
- age (12)
- age= (12)
- change (12)
- change= (12)
- comment (12)
- comment= (12)
- dir (12)
- dir= (12)
- expire (12)
- expire= (12)
- gecos (12)
- gecos= (12)
- gid (24)
- gid= (24)
- mem (12)
- mem= (12)
- name (24)
- name= (24)
- passwd (24)
- passwd= (24)
- pathconf (12)
- quota (12)
- quota= (12)
- shell (12)
- shell= (12)
- uclass (12)
- uclass= (12)
- uid (12)
- uid= (12)
検索結果
-
Etc
:: Passwd # uid=(uid) (3.0) -
このユーザの uid を設定します。
このユーザの uid を設定します。 -
IO
# pathconf(name) -> Integer | nil (3.0) -
fpathconf(3) で取得したファイルの設定変数の値を返します。
...場合は nil
を返します。(fpathconf(3) が -1 を返し、errno が設定されていない
場合)
@param name Etc モジュールの PC_ で始まる定数のいずれかを指定します。
//emlist[][ruby]{
require 'etc'
IO.pipe {|r, w|
p w.pathconf(Etc::PC_PIPE_BUF) # => 4096
}
//}...