github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/pkg/manager/html/fallback_cover.html (about)

     1  {{/*
     2  Copyright 2024 syzkaller project authors. All rights reserved.
     3  Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
     4  */}}
     5  
     6  <table class="list_table">
     7  	<thead>
     8  	<tr>
     9  		<th>Call</th>
    10  		<th>Successful</th>
    11  		<th>Errnos</th>
    12  	</tr>
    13  	</thead>
    14  	<tbody>
    15  	{{range $c := $.Calls}}
    16  	<tr>
    17  		<td>{{$c.Name}}</td>
    18  		<td>{{if $c.Successful}}{{$c.Successful}}{{end}}</td>
    19  		<td>{{range $e := $c.Errnos}}{{$e}}&nbsp;{{end}}</td>
    20  	</tr>
    21  	{{end}}
    22  	</tbody>
    23  </table>