| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |