| Method | Pushes | Percent | Users | Push / User | Hours / Push |
|---|---|---|---|---|---|
| total | 4730 | 100.0 | 245 | 19.31 | 45.1 |
| mach try fuzzy | 1773 | 37.5 | 139 | 12.76 | 27.9 |
| mach try again | 865 | 18.3 | 62 | 13.95 | 48.3 |
| mach try chooser | 728 | 15.4 | 83 | 8.77 | 62.0 |
| mach try auto | 725 | 15.3 | 78 | 9.29 | 54.0 |
| other | 235 | 5.0 | 5 | 47.0 | 0.0 |
| vanilla try syntax | 129 | 2.7 | 11 | 11.73 | 0.0 |
| mach try syntax | 116 | 2.5 | 18 | 6.44 | 72.1 |
| Status | Count | Percent |
|---|---|---|
| completed | 566 | 89.8 |
| failed | 61 | 9.7 |
| canceled | 2 | 0.3 |
| claim-expired | 1 | 0.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Callable, Type | |
| def register() -> Callable: | |
| def wrap(cls: Type) -> Type : | |
| return cls | |
| return wrap |
| Worker Pool Id | Owner | Instance Type(s) |
|---|---|---|
| proj-bergamot/ci-windows | nobody@mozilla.org | m4.2xlarge, m5.2xlarge |
| proj-fuzzing/ci-windows | fuzzing+taskcluster@mozilla.com | m4.2xlarge, m5.2xlarge |
| proj-fuzzing/windows-pool55 | fuzzing+taskcluster@mozilla.com | m5.2xlarge |
| proj-fuzzing/windows-pool58 | fuzzing+taskcluster@mozilla.com | m5.2xlarge |
| proj-fuzzing/windows-pool59 | fuzzing+taskcluster@mozilla.com | m5.2xlarge |
| proj-fuzzing/windows-pool60 | fuzzing+taskcluster@mozilla.com | m5.2xlarge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 -u | |
| # This Source Code Form is subject to the terms of the Mozilla Public | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
| import argparse | |
| import bz2 | |
| import concurrent.futures | |
| import gzip | |
| import hashlib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """Switch LG 45GX950A input source via DDC alt mode. | |
| System package dependencies: | |
| ddcutil - detects the i2c bus (https://www.ddcutil.com) | |
| i2c-tools - provides i2ctransfer for raw i2c writes | |
| Run without root: | |
| sudo groupadd i2c | |
| sudo usermod -aG i2c $USER |
OlderNewer