mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
514 B
22 lines
514 B
9 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head><title>Performance Test Result</title></head>
|
||
|
<body>
|
||
|
<h2>Performance Test Result</h2>
|
||
|
<table style="width:50%" border="1">
|
||
|
<% sorted_test_cases = sorted(resultset.keys()) %>
|
||
|
% for test_case in sorted_test_cases:
|
||
|
<tr><td bgcolor="#00BFFF" style="width:30%"><b>${test_case}</b></td>
|
||
|
<% result = resultset[test_case] %>
|
||
|
<td>
|
||
|
% for k, v in result.iteritems():
|
||
|
${k}: ${v}<br>
|
||
|
% endfor
|
||
|
</td>
|
||
|
</tr>
|
||
|
% endfor
|
||
|
</table>
|
||
|
|
||
|
</body>
|
||
|
</html>
|