repo.or.cz
/
rainbows.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
switch docs + website to olddoc
[rainbows.git]
/
t
/
times.ru
blob
8be3ed48fdb725de929b76673964cd239677d71c
1
use Rack::ContentLength
2
use Rack::ContentType, "text/plain"
3
run lambda { |env|
4
t = Process.times
5
[ 200, {}, [ "utime=#{t.utime} stime=#{t.stime}" ] ]
6
}