forked from XAMPPRocky/tokei
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated v8.0.0 and added comparison document
- Loading branch information
Aaron Power
committed
Aug 25, 2018
1 parent
2eea66b
commit ee5df4b
Showing
19 changed files
with
1,963 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env gnuplot -c | ||
|
||
if (strlen(ARG1) == 0) print "Usage: " . ARG0 . " <repo_name> <repo.csv>"; exit | ||
|
||
set terminal svg | ||
set datafile separator comma | ||
set title "Performance on the " . ARG1 . " Repository w/o Cloc (Lower is better)" | ||
unset key | ||
set xlabel 'Program' | ||
set ylabel 'Mean time (milliseconds)' | ||
# Adjust depending on graphs. | ||
set yrange [0:380] | ||
set style fill solid | ||
set style data histogram | ||
set xtics center | ||
plot ARG2 using 2:xtic(1) title columnheader |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
command,mean | ||
tokei,162.616040335 | ||
scc,349.010611535 | ||
loc,100.77284752854836 | ||
# cloc,3.889367681835 |
Oops, something went wrong.