るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.084秒)

別のキーワード

  1. httpstatus rc_gone
  2. webrick/httpstatus gone
  3. webrick/httpstatus rc_gone
  4. webrick/httpstatus webrick::httpstatus::gone
  5. gone

ライブラリ

キーワード

検索結果

WEBrick::HTTPStatus::Gone (18017.0)

HTTP のステータスコード 410 Gone を表すクラスです。

...HTTP のステータスコード 410 Gone を表すクラスです。...

Net::HTTPGone (6017.0)

HTTP レスポンス 410 (Gone) を表現するクラスです。

...HTTP レスポンス 410 (Gone) を表現するクラスです。

詳しくは 7231 Section 6.5.9 を見てください。...

TCPServer (13.0)

TCP/IP ストリーム型接続のサーバ側のソケットのクラスです。

...s in nsock[0]
if s == gs
socks.push(s.accept)
print(s, " is accepted\n")
else
if s.eof?
print(s, " is gone\n")
s.close
socks.delete(s)
else
str = s.gets
s.write(str)
end
end
end
end

Th...
...addr = gs.addr
addr.shift
printf("server is on %s\n", addr.join(":"))

while true
Thread.start(gs.accept) do |s| # save to dynamic variable
print(s, " is accepted\n")
while s.gets
s.write($_)
end
print(s, " is gone\n")
s.close
end
end...