Skip to content

Instantly share code, notes, and snippets.

@aycabta
Last active March 31, 2018 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aycabta/abdfaa75ea8a6877eeb734e942e73800 to your computer and use it in GitHub Desktop.
Save aycabta/abdfaa75ea8a6877eeb734e942e73800 to your computer and use it in GitHub Desktop.
RDoc with frozen_string_literal

RDoc with frozen_string_literal

# use Ruby 2.4.3
$ ruby -v
ruby 2.4.3p205 (2017-12-14 revision 61247) [x86_64-linux]

# source code of Ruby 2.4.3
$ find . -maxdepth 1 -name "ruby-2.4.3"
./ruby-2.4.3

$ git clone git@github.com:ruby/rdoc.git
$ cd rdoc

# before https://github.com/ruby/rdoc/pull/551
$ git checkout d9529add0d3ce58ccbbc914f5b805df8bc3c412f
$ for i in `seq 100`; do rm -r doc; time ruby -Ilib exe/rdoc ../ruby-2.4.3 > /dev/null; done 2> before
$ for i in `seq 100`; do rm -r doc; time ruby -Ilib exe/rdoc --dry-run ../ruby-2.4.3 > /dev/null; done 2> before-dry-run

# after https://github.com/ruby/rdoc/pull/551
$ git checkout b7449e4b2d71c16e58f5a5db859867e8c90246ac
$ for i in `seq 100`; do rm -r doc; time ruby -Ilib exe/rdoc ../ruby-2.4.3 > /dev/null; done 2> after
$ for i in `seq 100`; do rm -r doc; time ruby -Ilib exe/rdoc --dry-run ../ruby-2.4.3 > /dev/null; done 2> after-dry-run

# after https://github.com/ruby/rdoc/pull/551 with "frozen_string_literal: false"
$ find . -name '*.rb' | xargs sed -i -e 's/\(frozen_string_literal\): true/\1: false/g'
$ for i in `seq 100`; do rm -r doc; time ruby -Ilib exe/rdoc ../ruby-2.4.3 > /dev/null; done 2> after-false

$ ls {before,after}* | xargs -I% bash -c "echo %; ruby calc.rb %"
after
79.92092
after-dry-run
79.32986
after-false
81.26848
before
79.17111
before-dry-run
79.45808

The Pull Request ruby/rdoc#551 has many changes for frozen string literal because RDoc expected that all strings are non-frozen. The log "before" that has frozen_string_literal: false is faster than the log "after-false" that has frozen_string_literal: false. Only the implementation changes increase document generation time by 2.6%. But in the case of the same implementation, the log "after" is faster than the log "after-false". The addition frozen_string_literal: true reduces document generation time by 1.6%. Finally, the implementation changes and frozen_string_literal: true increases document generation time by 0.9%.

Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.824s
user 1m17.348s
sys 0m1.219s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.114s
user 1m17.700s
sys 0m1.155s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.768s
user 1m17.338s
sys 0m1.180s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.298s
user 1m17.887s
sys 0m1.169s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.374s
user 1m17.966s
sys 0m1.163s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.604s
user 1m18.142s
sys 0m1.205s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.263s
user 1m18.845s
sys 0m1.161s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.822s
user 1m17.394s
sys 0m1.181s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.489s
user 1m19.017s
sys 0m1.214s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.215s
user 1m17.779s
sys 0m1.196s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.550s
user 1m18.152s
sys 0m1.151s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.001s
user 1m18.555s
sys 0m1.188s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.346s
user 1m18.883s
sys 0m1.212s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.318s
user 1m17.853s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.293s
user 1m18.859s
sys 0m1.143s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m35.801s
user 1m33.709s
sys 0m1.481s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.299s
user 1m17.874s
sys 0m1.170s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.256s
user 1m17.850s
sys 0m1.152s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.396s
user 1m17.942s
sys 0m1.203s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.296s
user 1m17.942s
sys 0m1.115s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.833s
user 1m18.325s
sys 0m1.252s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.635s
user 1m18.178s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.569s
user 1m18.098s
sys 0m1.209s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.672s
user 1m18.308s
sys 0m1.119s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.809s
user 1m18.380s
sys 0m1.162s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.805s
user 1m18.416s
sys 0m1.129s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.708s
user 1m18.300s
sys 0m1.164s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.237s
user 1m18.775s
sys 0m1.218s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.575s
user 1m18.078s
sys 0m1.252s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.165s
user 1m18.727s
sys 0m1.185s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.344s
user 1m17.904s
sys 0m1.194s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.615s
user 1m19.186s
sys 0m1.181s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.051s
user 1m18.631s
sys 0m1.173s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.342s
user 1m18.891s
sys 0m1.198s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.305s
user 1m17.902s
sys 0m1.155s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.699s
user 1m19.334s
sys 0m1.104s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.096s
user 1m18.613s
sys 0m1.224s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.386s
user 1m17.937s
sys 0m1.202s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.530s
user 1m19.122s
sys 0m1.146s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.188s
user 1m18.743s
sys 0m1.195s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.290s
user 1m17.769s
sys 0m1.267s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.466s
user 1m17.958s
sys 0m1.257s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.161s
user 1m18.765s
sys 0m1.145s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.807s
user 1m18.385s
sys 0m1.182s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.641s
user 1m18.231s
sys 0m1.162s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.040s
user 1m17.612s
sys 0m1.178s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.059s
user 1m18.603s
sys 0m1.207s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.297s
user 1m17.842s
sys 0m1.200s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.600s
user 1m18.149s
sys 0m1.212s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.455s
user 1m18.032s
sys 0m1.187s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.148s
user 1m17.722s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.274s
user 1m17.827s
sys 0m1.186s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.786s
user 1m18.331s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.741s
user 1m18.344s
sys 0m1.141s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.233s
user 1m17.802s
sys 0m1.181s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.551s
user 1m18.154s
sys 0m1.155s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.957s
user 1m18.497s
sys 0m1.198s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.539s
user 1m19.136s
sys 0m1.156s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.798s
user 1m18.351s
sys 0m1.203s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.888s
user 1m19.408s
sys 0m1.228s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.965s
user 1m18.500s
sys 0m1.218s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.118s
user 1m18.662s
sys 0m1.201s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.487s
user 1m18.034s
sys 0m1.200s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.845s
user 1m18.399s
sys 0m1.187s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.686s
user 1m18.234s
sys 0m1.193s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.467s
user 1m18.035s
sys 0m1.181s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.285s
user 1m17.831s
sys 0m1.188s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.581s
user 1m18.113s
sys 0m1.206s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.923s
user 1m18.521s
sys 0m1.138s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.424s
user 1m17.999s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.318s
user 1m18.838s
sys 0m1.212s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.063s
user 1m17.594s
sys 0m1.205s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.670s
user 1m19.191s
sys 0m1.219s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.792s
user 1m18.350s
sys 0m1.187s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.877s
user 1m18.417s
sys 0m1.198s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.860s
user 1m18.408s
sys 0m1.190s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.782s
user 1m18.347s
sys 0m1.183s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.118s
user 1m18.620s
sys 0m1.252s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.868s
user 1m18.446s
sys 0m1.180s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.723s
user 1m19.247s
sys 0m1.217s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.996s
user 1m18.547s
sys 0m1.188s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.133s
user 1m17.739s
sys 0m1.145s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.215s
user 1m18.744s
sys 0m1.213s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.193s
user 1m18.712s
sys 0m1.214s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.342s
user 1m17.933s
sys 0m1.173s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.837s
user 1m18.393s
sys 0m1.191s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.813s
user 1m18.396s
sys 0m1.153s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.275s
user 1m17.932s
sys 0m1.086s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.275s
user 1m18.876s
sys 0m1.152s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.320s
user 1m18.851s
sys 0m1.227s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.695s
user 1m18.205s
sys 0m1.238s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.346s
user 1m17.948s
sys 0m1.158s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.614s
user 1m19.186s
sys 0m1.168s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.334s
user 1m18.837s
sys 0m1.245s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.641s
user 1m18.175s
sys 0m1.215s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.669s
user 1m18.170s
sys 0m1.245s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.365s
user 1m17.985s
sys 0m1.139s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.336s
user 1m17.928s
sys 0m1.148s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.462s
user 1m19.033s
sys 0m1.185s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.757s
user 1m18.345s
sys 0m1.168s
rm: cannot remove 'doc': No such file or directory
real 1m18.656s
user 1m17.485s
sys 0m0.942s
rm: cannot remove 'doc': No such file or directory
real 1m18.882s
user 1m17.677s
sys 0m0.978s
rm: cannot remove 'doc': No such file or directory
real 1m18.381s
user 1m17.136s
sys 0m1.013s
rm: cannot remove 'doc': No such file or directory
real 1m19.292s
user 1m18.091s
sys 0m0.966s
rm: cannot remove 'doc': No such file or directory
real 1m19.436s
user 1m18.301s
sys 0m0.903s
rm: cannot remove 'doc': No such file or directory
real 1m19.375s
user 1m18.221s
sys 0m0.922s
rm: cannot remove 'doc': No such file or directory
real 1m18.340s
user 1m17.153s
sys 0m0.967s
rm: cannot remove 'doc': No such file or directory
real 1m18.562s
user 1m17.315s
sys 0m1.006s
rm: cannot remove 'doc': No such file or directory
real 1m19.607s
user 1m18.355s
sys 0m1.008s
rm: cannot remove 'doc': No such file or directory
real 1m19.501s
user 1m18.305s
sys 0m0.952s
rm: cannot remove 'doc': No such file or directory
real 1m19.904s
user 1m18.728s
sys 0m0.945s
rm: cannot remove 'doc': No such file or directory
real 1m18.969s
user 1m17.766s
sys 0m0.975s
rm: cannot remove 'doc': No such file or directory
real 1m18.876s
user 1m17.725s
sys 0m0.914s
rm: cannot remove 'doc': No such file or directory
real 1m20.026s
user 1m18.776s
sys 0m1.012s
rm: cannot remove 'doc': No such file or directory
real 1m18.939s
user 1m17.735s
sys 0m0.968s
rm: cannot remove 'doc': No such file or directory
real 1m20.347s
user 1m19.083s
sys 0m1.031s
rm: cannot remove 'doc': No such file or directory
real 1m19.110s
user 1m17.954s
sys 0m0.920s
rm: cannot remove 'doc': No such file or directory
real 1m19.854s
user 1m18.639s
sys 0m0.979s
rm: cannot remove 'doc': No such file or directory
real 1m19.452s
user 1m18.274s
sys 0m0.945s
rm: cannot remove 'doc': No such file or directory
real 1m20.067s
user 1m18.839s
sys 0m0.989s
rm: cannot remove 'doc': No such file or directory
real 1m19.077s
user 1m17.868s
sys 0m0.977s
rm: cannot remove 'doc': No such file or directory
real 1m20.071s
user 1m18.870s
sys 0m0.962s
rm: cannot remove 'doc': No such file or directory
real 1m19.923s
user 1m18.719s
sys 0m0.972s
rm: cannot remove 'doc': No such file or directory
real 1m19.209s
user 1m17.973s
sys 0m0.998s
rm: cannot remove 'doc': No such file or directory
real 1m19.219s
user 1m18.036s
sys 0m0.941s
rm: cannot remove 'doc': No such file or directory
real 1m18.846s
user 1m17.604s
sys 0m1.006s
rm: cannot remove 'doc': No such file or directory
real 1m20.089s
user 1m18.863s
sys 0m0.987s
rm: cannot remove 'doc': No such file or directory
real 1m19.342s
user 1m18.140s
sys 0m0.968s
rm: cannot remove 'doc': No such file or directory
real 1m19.085s
user 1m17.897s
sys 0m0.945s
rm: cannot remove 'doc': No such file or directory
real 1m19.828s
user 1m18.670s
sys 0m0.928s
rm: cannot remove 'doc': No such file or directory
real 1m20.100s
user 1m18.842s
sys 0m1.022s
rm: cannot remove 'doc': No such file or directory
real 1m20.666s
user 1m19.381s
sys 0m1.050s
rm: cannot remove 'doc': No such file or directory
real 1m19.088s
user 1m17.879s
sys 0m0.984s
rm: cannot remove 'doc': No such file or directory
real 1m19.656s
user 1m18.470s
sys 0m0.953s
rm: cannot remove 'doc': No such file or directory
real 1m20.082s
user 1m18.898s
sys 0m0.954s
rm: cannot remove 'doc': No such file or directory
real 1m19.239s
user 1m18.058s
sys 0m0.946s
rm: cannot remove 'doc': No such file or directory
real 1m19.227s
user 1m17.977s
sys 0m1.015s
rm: cannot remove 'doc': No such file or directory
real 1m19.810s
user 1m18.590s
sys 0m0.988s
rm: cannot remove 'doc': No such file or directory
real 1m19.462s
user 1m18.201s
sys 0m1.026s
rm: cannot remove 'doc': No such file or directory
real 1m18.853s
user 1m17.668s
sys 0m0.956s
rm: cannot remove 'doc': No such file or directory
real 1m19.423s
user 1m18.217s
sys 0m0.963s
rm: cannot remove 'doc': No such file or directory
real 1m19.156s
user 1m17.977s
sys 0m0.949s
rm: cannot remove 'doc': No such file or directory
real 1m19.353s
user 1m18.111s
sys 0m1.006s
rm: cannot remove 'doc': No such file or directory
real 1m19.206s
user 1m18.018s
sys 0m0.951s
rm: cannot remove 'doc': No such file or directory
real 1m19.934s
user 1m18.664s
sys 0m1.029s
rm: cannot remove 'doc': No such file or directory
real 1m18.666s
user 1m17.473s
sys 0m0.964s
rm: cannot remove 'doc': No such file or directory
real 1m19.084s
user 1m17.870s
sys 0m0.983s
rm: cannot remove 'doc': No such file or directory
real 1m19.107s
user 1m17.911s
sys 0m0.964s
rm: cannot remove 'doc': No such file or directory
real 1m19.102s
user 1m17.907s
sys 0m0.966s
rm: cannot remove 'doc': No such file or directory
real 1m18.764s
user 1m17.532s
sys 0m0.995s
rm: cannot remove 'doc': No such file or directory
real 1m19.127s
user 1m17.885s
sys 0m1.008s
rm: cannot remove 'doc': No such file or directory
real 1m19.368s
user 1m18.220s
sys 0m0.915s
rm: cannot remove 'doc': No such file or directory
real 1m19.488s
user 1m18.283s
sys 0m0.977s
rm: cannot remove 'doc': No such file or directory
real 1m19.703s
user 1m18.489s
sys 0m0.982s
rm: cannot remove 'doc': No such file or directory
real 1m19.261s
user 1m18.030s
sys 0m0.998s
rm: cannot remove 'doc': No such file or directory
real 1m20.816s
user 1m19.632s
sys 0m0.953s
rm: cannot remove 'doc': No such file or directory
real 1m19.751s
user 1m18.579s
sys 0m0.942s
rm: cannot remove 'doc': No such file or directory
real 1m19.361s
user 1m18.135s
sys 0m1.000s
rm: cannot remove 'doc': No such file or directory
real 1m19.747s
user 1m18.587s
sys 0m0.924s
rm: cannot remove 'doc': No such file or directory
real 1m20.204s
user 1m19.017s
sys 0m0.956s
rm: cannot remove 'doc': No such file or directory
real 1m19.112s
user 1m17.944s
sys 0m0.941s
rm: cannot remove 'doc': No such file or directory
real 1m19.042s
user 1m17.852s
sys 0m0.955s
rm: cannot remove 'doc': No such file or directory
real 1m18.739s
user 1m17.549s
sys 0m0.957s
rm: cannot remove 'doc': No such file or directory
real 1m19.398s
user 1m18.194s
sys 0m0.969s
rm: cannot remove 'doc': No such file or directory
real 1m18.921s
user 1m17.723s
sys 0m0.970s
rm: cannot remove 'doc': No such file or directory
real 1m18.822s
user 1m17.660s
sys 0m0.927s
rm: cannot remove 'doc': No such file or directory
real 1m18.706s
user 1m17.534s
sys 0m0.945s
rm: cannot remove 'doc': No such file or directory
real 1m18.944s
user 1m17.807s
sys 0m0.908s
rm: cannot remove 'doc': No such file or directory
real 1m19.087s
user 1m17.917s
sys 0m0.942s
rm: cannot remove 'doc': No such file or directory
real 1m18.848s
user 1m17.679s
sys 0m0.938s
rm: cannot remove 'doc': No such file or directory
real 1m18.853s
user 1m17.679s
sys 0m0.939s
rm: cannot remove 'doc': No such file or directory
real 1m19.856s
user 1m18.660s
sys 0m0.958s
rm: cannot remove 'doc': No such file or directory
real 1m19.782s
user 1m18.593s
sys 0m0.958s
rm: cannot remove 'doc': No such file or directory
real 1m19.076s
user 1m17.895s
sys 0m0.942s
rm: cannot remove 'doc': No such file or directory
real 1m18.972s
user 1m17.774s
sys 0m0.965s
rm: cannot remove 'doc': No such file or directory
real 1m19.583s
user 1m18.361s
sys 0m0.988s
rm: cannot remove 'doc': No such file or directory
real 1m19.198s
user 1m17.992s
sys 0m0.973s
rm: cannot remove 'doc': No such file or directory
real 1m18.939s
user 1m17.755s
sys 0m0.938s
rm: cannot remove 'doc': No such file or directory
real 1m19.823s
user 1m18.619s
sys 0m0.965s
rm: cannot remove 'doc': No such file or directory
real 1m18.940s
user 1m17.774s
sys 0m0.936s
rm: cannot remove 'doc': No such file or directory
real 1m18.800s
user 1m17.638s
sys 0m0.931s
rm: cannot remove 'doc': No such file or directory
real 1m19.094s
user 1m17.880s
sys 0m0.989s
rm: cannot remove 'doc': No such file or directory
real 1m19.321s
user 1m18.106s
sys 0m0.987s
rm: cannot remove 'doc': No such file or directory
real 1m18.934s
user 1m17.722s
sys 0m0.982s
rm: cannot remove 'doc': No such file or directory
real 1m19.773s
user 1m18.595s
sys 0m0.947s
rm: cannot remove 'doc': No such file or directory
real 1m19.251s
user 1m18.013s
sys 0m1.010s
rm: cannot remove 'doc': No such file or directory
real 1m19.877s
user 1m18.694s
sys 0m0.954s
rm: cannot remove 'doc': No such file or directory
real 1m19.239s
user 1m18.049s
sys 0m0.945s
rm: cannot remove 'doc': No such file or directory
real 1m19.903s
user 1m18.708s
sys 0m0.958s
rm: cannot remove 'doc': No such file or directory
real 1m18.929s
user 1m17.747s
sys 0m0.936s
rm: cannot remove 'doc': No such file or directory
real 1m18.683s
user 1m17.454s
sys 0m1.006s
rm: cannot remove 'doc': No such file or directory
real 1m19.166s
user 1m18.005s
sys 0m0.929s
rm: cannot remove 'doc': No such file or directory
real 1m19.267s
user 1m18.122s
sys 0m0.923s
rm: cannot remove 'doc': No such file or directory
real 1m18.864s
user 1m17.656s
sys 0m0.973s
rm: cannot remove 'doc': No such file or directory
real 1m19.729s
user 1m18.492s
sys 0m0.995s
rm: cannot remove 'doc': No such file or directory
real 1m19.401s
user 1m18.101s
sys 0m1.068s
rm: cannot remove 'doc': No such file or directory
real 1m19.142s
user 1m17.923s
sys 0m0.973s
rm: cannot remove 'doc': No such file or directory
real 1m18.999s
user 1m17.764s
sys 0m0.995s
rm: cannot remove 'doc': No such file or directory
real 1m19.877s
user 1m18.716s
sys 0m0.921s
rm: cannot remove 'doc': No such file or directory
real 1m19.027s
user 1m17.862s
sys 0m0.934s
rm: cannot remove 'doc': No such file or directory
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.361s
user 1m18.932s
sys 0m1.180s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.677s
user 1m19.177s
sys 0m1.250s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.094s
user 1m20.746s
sys 0m1.093s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.339s
user 1m18.956s
sys 0m1.121s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.761s
user 1m19.365s
sys 0m1.146s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.662s
user 1m19.272s
sys 0m1.135s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.457s
user 1m18.980s
sys 0m1.215s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.894s
user 1m19.466s
sys 0m1.177s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.568s
user 1m19.093s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.856s
user 1m19.466s
sys 0m1.137s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.785s
user 1m19.371s
sys 0m1.162s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.018s
user 1m19.627s
sys 0m1.145s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.210s
user 1m19.801s
sys 0m1.153s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.794s
user 1m19.439s
sys 0m1.107s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.107s
user 1m19.714s
sys 0m1.145s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.967s
user 1m19.596s
sys 0m1.115s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.931s
user 1m19.456s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.663s
user 1m19.296s
sys 0m1.125s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.818s
user 1m19.365s
sys 0m1.201s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.289s
user 1m19.853s
sys 0m1.181s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.887s
user 1m19.499s
sys 0m1.143s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.925s
user 1m19.470s
sys 0m1.189s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.552s
user 1m19.151s
sys 0m1.155s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.954s
user 1m19.589s
sys 0m1.120s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.104s
user 1m19.727s
sys 0m1.125s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.955s
user 1m19.531s
sys 0m1.173s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.907s
user 1m19.443s
sys 0m1.217s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.396s
user 1m18.997s
sys 0m1.139s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.030s
user 1m19.662s
sys 0m1.129s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.534s
user 1m19.143s
sys 0m1.146s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.034s
user 1m19.661s
sys 0m1.125s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.978s
user 1m19.551s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.112s
user 1m19.664s
sys 0m1.180s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.097s
user 1m19.678s
sys 0m1.156s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.810s
user 1m19.373s
sys 0m1.197s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.741s
user 1m19.327s
sys 0m1.160s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.098s
user 1m19.709s
sys 0m1.137s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.091s
user 1m19.687s
sys 0m1.159s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.965s
user 1m20.518s
sys 0m1.187s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.118s
user 1m18.672s
sys 0m1.195s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.234s
user 1m19.812s
sys 0m1.157s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.252s
user 1m19.811s
sys 0m1.186s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.123s
user 1m19.677s
sys 0m1.189s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.774s
user 1m19.348s
sys 0m1.160s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.188s
user 1m19.671s
sys 0m1.266s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.511s
user 1m19.031s
sys 0m1.213s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.949s
user 1m19.482s
sys 0m1.214s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.922s
user 1m19.457s
sys 0m1.213s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.150s
user 1m19.732s
sys 0m1.170s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.018s
user 1m19.623s
sys 0m1.124s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.734s
user 1m19.307s
sys 0m1.168s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.090s
user 1m19.633s
sys 0m1.190s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.884s
user 1m19.410s
sys 0m1.206s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.881s
user 1m19.418s
sys 0m1.211s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.133s
user 1m19.651s
sys 0m1.230s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.013s
user 1m19.618s
sys 0m1.140s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.856s
user 1m19.391s
sys 0m1.205s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.703s
user 1m20.249s
sys 0m1.206s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.242s
user 1m20.773s
sys 0m1.193s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.949s
user 1m20.514s
sys 0m1.165s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.055s
user 1m20.634s
sys 0m1.153s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.484s
user 1m20.021s
sys 0m1.206s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.819s
user 1m20.360s
sys 0m1.203s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.002s
user 1m20.561s
sys 0m1.193s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.556s
user 1m20.074s
sys 0m1.216s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.618s
user 1m20.217s
sys 0m1.133s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.593s
user 1m20.162s
sys 0m1.177s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.220s
user 1m20.721s
sys 0m1.232s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.859s
user 1m20.407s
sys 0m1.187s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.502s
user 1m20.034s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.788s
user 1m20.300s
sys 0m1.233s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.827s
user 1m20.339s
sys 0m1.227s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.718s
user 1m20.240s
sys 0m1.218s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.926s
user 1m20.510s
sys 0m1.152s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.348s
user 1m19.887s
sys 0m1.192s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.678s
user 1m20.230s
sys 0m1.203s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.507s
user 1m20.032s
sys 0m1.196s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.632s
user 1m20.187s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.897s
user 1m20.442s
sys 0m1.180s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.610s
user 1m20.146s
sys 0m1.198s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.718s
user 1m20.231s
sys 0m1.221s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.060s
user 1m20.606s
sys 0m1.191s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.513s
user 1m20.022s
sys 0m1.234s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.382s
user 1m19.914s
sys 0m1.209s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.868s
user 1m20.443s
sys 0m1.157s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.965s
user 1m20.476s
sys 0m1.227s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.556s
user 1m20.109s
sys 0m1.178s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.516s
user 1m20.117s
sys 0m1.138s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.389s
user 1m19.928s
sys 0m1.201s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.053s
user 1m20.614s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.505s
user 1m20.013s
sys 0m1.226s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.092s
user 1m20.699s
sys 0m1.138s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.643s
user 1m20.305s
sys 0m1.075s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.723s
user 1m19.253s
sys 0m1.204s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.514s
user 1m20.074s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.948s
user 1m20.449s
sys 0m1.213s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m22.285s
user 1m20.819s
sys 0m1.205s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.784s
user 1m20.312s
sys 0m1.204s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.872s
user 1m20.440s
sys 0m1.173s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m21.678s
user 1m20.214s
sys 0m1.204s
rm: cannot remove 'doc': No such file or directory
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m17.765s
user 1m16.295s
sys 0m1.222s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.465s
user 1m18.049s
sys 0m1.177s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.686s
user 1m17.280s
sys 0m1.156s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.913s
user 1m18.548s
sys 0m1.118s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.435s
user 1m16.977s
sys 0m1.213s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.657s
user 1m18.199s
sys 0m1.204s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.814s
user 1m17.374s
sys 0m1.196s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.654s
user 1m17.256s
sys 0m1.156s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.333s
user 1m19.001s
sys 0m1.089s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.690s
user 1m18.300s
sys 0m1.136s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.875s
user 1m18.455s
sys 0m1.170s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m17.937s
user 1m16.490s
sys 0m1.207s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.847s
user 1m17.443s
sys 0m1.158s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.526s
user 1m17.134s
sys 0m1.147s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.810s
user 1m18.403s
sys 0m1.165s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.782s
user 1m17.354s
sys 0m1.180s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.166s
user 1m17.822s
sys 0m1.098s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.460s
user 1m18.004s
sys 0m1.206s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.458s
user 1m18.008s
sys 0m1.193s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.875s
user 1m18.459s
sys 0m1.163s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.774s
user 1m18.384s
sys 0m1.135s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.803s
user 1m18.379s
sys 0m1.176s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.569s
user 1m17.157s
sys 0m1.162s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.123s
user 1m17.734s
sys 0m1.133s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.267s
user 1m17.890s
sys 0m1.122s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.799s
user 1m18.366s
sys 0m1.183s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.958s
user 1m18.591s
sys 0m1.121s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.487s
user 1m18.057s
sys 0m1.176s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.339s
user 1m17.921s
sys 0m1.165s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.902s
user 1m17.465s
sys 0m1.186s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.853s
user 1m17.465s
sys 0m1.139s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.289s
user 1m16.875s
sys 0m1.167s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.823s
user 1m17.378s
sys 0m1.196s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.373s
user 1m17.937s
sys 0m1.181s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.963s
user 1m18.567s
sys 0m1.147s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.617s
user 1m17.220s
sys 0m1.149s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.635s
user 1m18.229s
sys 0m1.151s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.879s
user 1m18.454s
sys 0m1.163s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.086s
user 1m17.751s
sys 0m1.086s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.824s
user 1m17.362s
sys 0m1.213s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.600s
user 1m17.189s
sys 0m1.166s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.799s
user 1m18.373s
sys 0m1.174s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.528s
user 1m18.132s
sys 0m1.146s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.621s
user 1m17.238s
sys 0m1.131s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.488s
user 1m17.082s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.541s
user 1m17.173s
sys 0m1.137s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.796s
user 1m18.366s
sys 0m1.189s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.162s
user 1m17.816s
sys 0m1.108s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.684s
user 1m17.225s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.707s
user 1m17.271s
sys 0m1.185s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.924s
user 1m18.508s
sys 0m1.158s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.830s
user 1m17.448s
sys 0m1.140s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.675s
user 1m17.298s
sys 0m1.130s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.759s
user 1m18.372s
sys 0m1.144s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m20.120s
user 1m18.686s
sys 0m1.186s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.090s
user 1m17.657s
sys 0m1.179s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.864s
user 1m17.423s
sys 0m1.199s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.800s
user 1m17.449s
sys 0m1.108s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.980s
user 1m17.602s
sys 0m1.144s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.978s
user 1m17.587s
sys 0m1.143s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.896s
user 1m17.490s
sys 0m1.156s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.624s
user 1m18.239s
sys 0m1.131s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.860s
user 1m17.437s
sys 0m1.191s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.973s
user 1m17.542s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.358s
user 1m16.950s
sys 0m1.164s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.932s
user 1m18.471s
sys 0m1.206s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.646s
user 1m18.237s
sys 0m1.163s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.730s
user 1m17.226s
sys 0m1.254s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.809s
user 1m17.363s
sys 0m1.206s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.721s
user 1m17.314s
sys 0m1.159s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.961s
user 1m17.540s
sys 0m1.172s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.703s
user 1m17.328s
sys 0m1.133s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.871s
user 1m18.484s
sys 0m1.141s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.117s
user 1m17.669s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.800s
user 1m18.341s
sys 0m1.215s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.386s
user 1m18.052s
sys 0m1.089s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.791s
user 1m18.373s
sys 0m1.162s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.934s
user 1m17.561s
sys 0m1.125s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.043s
user 1m17.614s
sys 0m1.181s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.886s
user 1m17.421s
sys 0m1.217s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.827s
user 1m18.433s
sys 0m1.155s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.041s
user 1m17.636s
sys 0m1.156s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.498s
user 1m17.069s
sys 0m1.194s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.414s
user 1m18.039s
sys 0m1.137s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.100s
user 1m17.669s
sys 0m1.173s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.510s
user 1m17.144s
sys 0m1.132s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.446s
user 1m18.035s
sys 0m1.163s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.909s
user 1m18.508s
sys 0m1.148s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.991s
user 1m17.583s
sys 0m1.165s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.846s
user 1m18.413s
sys 0m1.170s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.570s
user 1m17.138s
sys 0m1.190s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.722s
user 1m18.294s
sys 0m1.171s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.812s
user 1m17.368s
sys 0m1.202s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.157s
user 1m17.799s
sys 0m1.116s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.457s
user 1m17.025s
sys 0m1.184s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.991s
user 1m18.526s
sys 0m1.210s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m19.726s
user 1m18.337s
sys 0m1.133s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.734s
user 1m17.307s
sys 0m1.180s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.977s
user 1m17.594s
sys 0m1.139s
Generating Darkfish format into /home/aycabta/rdoc/doc...
real 1m18.885s
user 1m17.477s
sys 0m1.154s
real 1m17.447s
user 1m16.270s
sys 0m0.955s
rm: cannot remove 'doc': No such file or directory
real 1m18.987s
user 1m17.855s
sys 0m0.896s
rm: cannot remove 'doc': No such file or directory
real 1m18.645s
user 1m17.499s
sys 0m0.923s
rm: cannot remove 'doc': No such file or directory
real 1m18.175s
user 1m17.035s
sys 0m0.915s
rm: cannot remove 'doc': No such file or directory
real 1m18.981s
user 1m17.821s
sys 0m0.933s
rm: cannot remove 'doc': No such file or directory
real 1m19.038s
user 1m17.827s
sys 0m0.982s
rm: cannot remove 'doc': No such file or directory
real 1m19.475s
user 1m18.320s
sys 0m0.914s
rm: cannot remove 'doc': No such file or directory
real 1m19.360s
user 1m18.160s
sys 0m0.968s
rm: cannot remove 'doc': No such file or directory
real 1m19.979s
user 1m18.749s
sys 0m0.994s
rm: cannot remove 'doc': No such file or directory
real 1m19.848s
user 1m18.683s
sys 0m0.925s
rm: cannot remove 'doc': No such file or directory
real 1m18.484s
user 1m17.276s
sys 0m0.972s
rm: cannot remove 'doc': No such file or directory
real 1m19.668s
user 1m18.481s
sys 0m0.956s
rm: cannot remove 'doc': No such file or directory
real 1m19.145s
user 1m17.910s
sys 0m1.000s
rm: cannot remove 'doc': No such file or directory
real 1m19.372s
user 1m18.185s
sys 0m0.952s
rm: cannot remove 'doc': No such file or directory
real 1m19.732s
user 1m18.548s
sys 0m0.942s
rm: cannot remove 'doc': No such file or directory
real 1m19.876s
user 1m18.668s
sys 0m0.979s
rm: cannot remove 'doc': No such file or directory
real 1m19.556s
user 1m18.326s
sys 0m0.989s
rm: cannot remove 'doc': No such file or directory
real 1m19.810s
user 1m18.570s
sys 0m1.015s
rm: cannot remove 'doc': No such file or directory
real 1m19.678s
user 1m18.547s
sys 0m0.893s
rm: cannot remove 'doc': No such file or directory
real 1m20.061s
user 1m18.882s
sys 0m0.952s
rm: cannot remove 'doc': No such file or directory
real 1m19.764s
user 1m18.608s
sys 0m0.923s
rm: cannot remove 'doc': No such file or directory
real 1m18.582s
user 1m17.433s
sys 0m0.921s
rm: cannot remove 'doc': No such file or directory
real 1m19.899s
user 1m18.728s
sys 0m0.934s
rm: cannot remove 'doc': No such file or directory
real 1m19.880s
user 1m18.694s
sys 0m0.955s
rm: cannot remove 'doc': No such file or directory
real 1m18.502s
user 1m17.267s
sys 0m1.008s
rm: cannot remove 'doc': No such file or directory
real 1m19.840s
user 1m18.628s
sys 0m0.978s
rm: cannot remove 'doc': No such file or directory
real 1m19.632s
user 1m18.462s
sys 0m0.940s
rm: cannot remove 'doc': No such file or directory
real 1m19.646s
user 1m18.462s
sys 0m0.944s
rm: cannot remove 'doc': No such file or directory
real 1m19.724s
user 1m18.586s
sys 0m0.903s
rm: cannot remove 'doc': No such file or directory
real 1m19.641s
user 1m18.519s
sys 0m0.884s
rm: cannot remove 'doc': No such file or directory
real 1m19.627s
user 1m18.449s
sys 0m0.949s
rm: cannot remove 'doc': No such file or directory
real 1m20.921s
user 1m19.702s
sys 0m0.974s
rm: cannot remove 'doc': No such file or directory
real 1m19.713s
user 1m18.487s
sys 0m0.994s
rm: cannot remove 'doc': No such file or directory
real 1m19.328s
user 1m18.159s
sys 0m0.937s
rm: cannot remove 'doc': No such file or directory
real 1m19.338s
user 1m18.173s
sys 0m0.931s
rm: cannot remove 'doc': No such file or directory
real 1m19.601s
user 1m18.458s
sys 0m0.916s
rm: cannot remove 'doc': No such file or directory
real 1m19.425s
user 1m18.214s
sys 0m0.977s
rm: cannot remove 'doc': No such file or directory
real 1m19.983s
user 1m18.884s
sys 0m0.866s
rm: cannot remove 'doc': No such file or directory
real 1m19.763s
user 1m18.633s
sys 0m0.901s
rm: cannot remove 'doc': No such file or directory
real 1m19.522s
user 1m18.352s
sys 0m0.941s
rm: cannot remove 'doc': No such file or directory
real 1m19.589s
user 1m18.387s
sys 0m0.968s
rm: cannot remove 'doc': No such file or directory
real 1m19.611s
user 1m18.450s
sys 0m0.921s
rm: cannot remove 'doc': No such file or directory
real 1m18.659s
user 1m17.451s
sys 0m0.980s
rm: cannot remove 'doc': No such file or directory
real 1m19.052s
user 1m17.909s
sys 0m0.909s
rm: cannot remove 'doc': No such file or directory
real 1m18.768s
user 1m17.598s
sys 0m0.939s
rm: cannot remove 'doc': No such file or directory
real 1m19.313s
user 1m18.123s
sys 0m0.949s
rm: cannot remove 'doc': No such file or directory
real 1m19.276s
user 1m18.083s
sys 0m0.954s
rm: cannot remove 'doc': No such file or directory
real 1m19.332s
user 1m18.148s
sys 0m0.950s
rm: cannot remove 'doc': No such file or directory
real 1m19.463s
user 1m18.308s
sys 0m0.919s
rm: cannot remove 'doc': No such file or directory
real 1m19.336s
user 1m18.176s
sys 0m0.929s
rm: cannot remove 'doc': No such file or directory
real 1m18.816s
user 1m17.654s
sys 0m0.926s
rm: cannot remove 'doc': No such file or directory
real 1m19.597s
user 1m18.385s
sys 0m0.988s
rm: cannot remove 'doc': No such file or directory
real 1m18.880s
user 1m17.687s
sys 0m0.963s
rm: cannot remove 'doc': No such file or directory
real 1m19.699s
user 1m18.567s
sys 0m0.898s
rm: cannot remove 'doc': No such file or directory
real 1m19.761s
user 1m18.519s
sys 0m1.005s
rm: cannot remove 'doc': No such file or directory
real 1m18.569s
user 1m17.383s
sys 0m0.953s
rm: cannot remove 'doc': No such file or directory
real 1m19.717s
user 1m18.525s
sys 0m0.959s
rm: cannot remove 'doc': No such file or directory
real 1m19.527s
user 1m18.358s
sys 0m0.942s
rm: cannot remove 'doc': No such file or directory
real 1m19.930s
user 1m18.731s
sys 0m0.964s
rm: cannot remove 'doc': No such file or directory
real 1m19.578s
user 1m18.306s
sys 0m1.033s
rm: cannot remove 'doc': No such file or directory
real 1m19.658s
user 1m18.487s
sys 0m0.939s
rm: cannot remove 'doc': No such file or directory
real 1m19.998s
user 1m18.804s
sys 0m0.963s
rm: cannot remove 'doc': No such file or directory
real 1m19.832s
user 1m18.669s
sys 0m0.921s
rm: cannot remove 'doc': No such file or directory
real 1m20.119s
user 1m18.923s
sys 0m0.957s
rm: cannot remove 'doc': No such file or directory
real 1m19.834s
user 1m18.666s
sys 0m0.932s
rm: cannot remove 'doc': No such file or directory
real 1m19.675s
user 1m18.508s
sys 0m0.938s
rm: cannot remove 'doc': No such file or directory
real 1m19.740s
user 1m18.611s
sys 0m0.904s
rm: cannot remove 'doc': No such file or directory
real 1m18.404s
user 1m17.218s
sys 0m0.962s
rm: cannot remove 'doc': No such file or directory
real 1m19.942s
user 1m18.803s
sys 0m0.905s
rm: cannot remove 'doc': No such file or directory
real 1m19.709s
user 1m18.545s
sys 0m0.929s
rm: cannot remove 'doc': No such file or directory
real 1m19.762s
user 1m18.541s
sys 0m0.986s
rm: cannot remove 'doc': No such file or directory
real 1m18.998s
user 1m17.790s
sys 0m0.978s
rm: cannot remove 'doc': No such file or directory
real 1m19.831s
user 1m18.656s
sys 0m0.942s
rm: cannot remove 'doc': No such file or directory
real 1m19.157s
user 1m17.909s
sys 0m1.017s
rm: cannot remove 'doc': No such file or directory
real 1m19.016s
user 1m17.864s
sys 0m0.923s
rm: cannot remove 'doc': No such file or directory
real 1m19.847s
user 1m18.625s
sys 0m0.998s
rm: cannot remove 'doc': No such file or directory
real 1m19.263s
user 1m18.091s
sys 0m0.937s
rm: cannot remove 'doc': No such file or directory
real 1m19.388s
user 1m18.216s
sys 0m0.944s
rm: cannot remove 'doc': No such file or directory
real 1m19.896s
user 1m18.710s
sys 0m0.949s
rm: cannot remove 'doc': No such file or directory
real 1m19.639s
user 1m18.418s
sys 0m0.988s
rm: cannot remove 'doc': No such file or directory
real 1m19.794s
user 1m18.657s
sys 0m0.909s
rm: cannot remove 'doc': No such file or directory
real 1m19.122s
user 1m17.928s
sys 0m0.964s
rm: cannot remove 'doc': No such file or directory
real 1m19.364s
user 1m18.158s
sys 0m0.966s
rm: cannot remove 'doc': No such file or directory
real 1m18.856s
user 1m17.670s
sys 0m0.952s
rm: cannot remove 'doc': No such file or directory
real 1m19.272s
user 1m18.093s
sys 0m0.951s
rm: cannot remove 'doc': No such file or directory
real 1m19.667s
user 1m18.502s
sys 0m0.917s
rm: cannot remove 'doc': No such file or directory
real 1m19.017s
user 1m17.817s
sys 0m0.957s
rm: cannot remove 'doc': No such file or directory
real 1m18.586s
user 1m17.382s
sys 0m0.978s
rm: cannot remove 'doc': No such file or directory
real 1m20.114s
user 1m18.942s
sys 0m0.940s
rm: cannot remove 'doc': No such file or directory
real 1m19.754s
user 1m18.567s
sys 0m0.952s
rm: cannot remove 'doc': No such file or directory
real 1m20.108s
user 1m18.933s
sys 0m0.946s
rm: cannot remove 'doc': No such file or directory
real 1m18.706s
user 1m17.542s
sys 0m0.928s
rm: cannot remove 'doc': No such file or directory
real 1m20.034s
user 1m18.815s
sys 0m0.986s
rm: cannot remove 'doc': No such file or directory
real 1m19.585s
user 1m18.350s
sys 0m0.996s
rm: cannot remove 'doc': No such file or directory
real 1m19.474s
user 1m18.277s
sys 0m0.968s
rm: cannot remove 'doc': No such file or directory
real 1m19.943s
user 1m18.752s
sys 0m0.959s
rm: cannot remove 'doc': No such file or directory
real 1m19.955s
user 1m18.843s
sys 0m0.879s
rm: cannot remove 'doc': No such file or directory
real 1m19.420s
user 1m18.274s
sys 0m0.915s
rm: cannot remove 'doc': No such file or directory
real 1m19.875s
user 1m18.667s
sys 0m0.981s
rm: cannot remove 'doc': No such file or directory
real 1m19.333s
user 1m18.104s
sys 0m0.995s
if ARGV.empty?
puts 'set file name'
exit 0
end
real = []
user = []
open(ARGV[0]) do |f|
f.each_line do |line|
if line =~ /^(real|user)\t(\d+)m(\d+\.\d+)s/
sec = $2.to_i * 60 + $3.to_f
case $1
when 'real'
real << sec
when 'user'
user << sec
end
end
end
end
puts real.sum / real.size
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment