Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
distributed / distributed / widgets / templates / computation.html.j2
Size: Mime:
<strong>Computation</strong> {{ id }}

<table>
    <tr>
        <td style="text-align: left;"><strong>Duration: </strong>{{ '%0.3f' | format(stop - start) }}</td>
        <td style="text-align: left;"></td>
    </tr>
    <tr>
        <td style="text-align: left;"><strong>Start: </strong>{{ start }}</td>
        <td style="text-align: left;"></td>
    </tr>
    <tr>
        <td style="text-align: left;"><strong>Groups: </strong>{{ groups | length }}</td>
        <td style="text-align: left;"></td>
    </tr>
    <tr>
        <td style="text-align: left;"><strong>Tasks: </strong>
        {% for k, v in states.items() if v %}
            {{ k }}: {{ v }}
            {{ ", " if not loop.last else "" }}
        {% endfor %}
        </td>
        <td style="text-align: left;"></td>
    </tr>
</table>

<details>
<summary style="margin-bottom": 20px><h4 style="display:inline">Code</h4></summary>
{% for segment in code %}
<h5>Code segment {{ loop.index }} / {{ code | length }}</h5>
<pre><code>{{ segment }}</code></pre>
{% endfor %}
</details>

<details>
<summary style="margin-bottom": 20px><h4 style="display:inline">Task Groups</h4></summary>
<ul>
{% for gr in groups %}
    <li> {{ gr.__repr__() | html_escape }} </li>
{% endfor %}
</ul>
</details>