Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1084)

Side by Side Diff: appengine/swarming/ui/res/imp/taskpage/task-page.html

Issue 2553563003: Link Swarming Tasklist and Botlist together (Closed)
Patch Set: Rebuild Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 Copyright 2016 The LUCI Authors. All rights reserved. 2 Copyright 2016 The LUCI Authors. All rights reserved.
3 Use of this source code is governed under the Apache License, Version 2.0 3 Use of this source code is governed under the Apache License, Version 2.0
4 that can be found in the LICENSE file. 4 that can be found in the LICENSE file.
5 5
6 This in an HTML Import-able file that contains the definition 6 This in an HTML Import-able file that contains the definition
7 of the following elements: 7 of the following elements:
8 8
9 <task-page> 9 <task-page>
10 10
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 <td>[[_humanDuration(_result.performance_stats.bot_overhead)]] </td> 465 <td>[[_humanDuration(_result.performance_stats.bot_overhead)]] </td>
466 </tr> 466 </tr>
467 <tr> 467 <tr>
468 <td>Downloading Inputs From Isolate</td> 468 <td>Downloading Inputs From Isolate</td>
469 <td>[[_humanDuration(_result.performance_stats.isolated_downlo ad.duration)]]</td> 469 <td>[[_humanDuration(_result.performance_stats.isolated_downlo ad.duration)]]</td>
470 </tr> 470 </tr>
471 <tr> 471 <tr>
472 <td>Uploading Outputs To Isolate</td> 472 <td>Uploading Outputs To Isolate</td>
473 <td>[[_humanDuration(_result.performance_stats.isolated_upload .duration)]]</td> 473 <td>[[_humanDuration(_result.performance_stats.isolated_upload .duration)]]</td>
474 </tr> 474 </tr>
475 <tr> 475 <tr hidden$="[[!_result.performance_stats.isolated_download.init ial_size]]">
476 <td>Initial bot cache</td> 476 <td>Initial bot cache</td>
477 <td>[[_result.performance_stats.isolated_download.initial_numb er_items]] items; 477 <td>[[_result.performance_stats.isolated_download.initial_numb er_items]] items;
478 [[_bytes(_result.performance_stats.isolated_download.initial_s ize)]]</td> 478 [[_bytes(_result.performance_stats.isolated_download.initial_s ize)]]</td>
479 </tr> 479 </tr>
480 </table> 480 </table>
481 </template> 481 </template>
482 482
483 <div hidden$="[[_not(_task_exists)]]"> 483 <div hidden$="[[_not(_task_exists)]]">
484 <div class="title">Reproducing the task locally</div> 484 <div class="title">Reproducing the task locally</div>
485 <div class="reproduce"> 485 <div class="reproduce">
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 return result && result.state !== this.PENDING && result.state !== this. CANCELED && result.state != this.EXPIRED; 851 return result && result.state !== this.PENDING && result.state !== this. CANCELED && result.state != this.EXPIRED;
852 }, 852 },
853 853
854 _wasNotPickedUp: function(result) { 854 _wasNotPickedUp: function(result) {
855 return result && !this._wasPickedUp(result); 855 return result && !this._wasPickedUp(result);
856 }, 856 },
857 }); 857 });
858 })(); 858 })();
859 </script> 859 </script>
860 </dom-module> 860 </dom-module>
OLDNEW
« no previous file with comments | « appengine/swarming/ui/res/imp/tasklist/task-list-data.html ('k') | appengine/swarming/ui/res/js/alias.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698