- Use '/' key to quickly access this field.
- Enter a name of repository, or repository group for quick search.
- Prefix query to allow special search:
user:admin, to search for usernames, always global
user_group:devops, to search for user groups, always global
pr:303, to search for pull request number, title, or description, always global
commit:efced4, to search for commits, scoped to repositories or groups
file:models.py, to search for file paths, scoped to repositories or groups
For advanced full text search visit: repository search
regexp group in BatchLauncher, no Condor -verbose...
regexp group in BatchLauncher, no Condor -verbose
Previously I used condor_submit -verbose so that I could pull the job id
from the first line. However, when submitting many jobs it's silly to
have to search through some many lines of output. Now we have a regexp
for Condor that matches on the non-verbose output. Here the job_id is on
the end of the output, so using grouping in our job_id_regexp becomes
very useful. To account for this I have added a job_id_regexp_group
property to the BatchLauncher and it's subclasses. The default of 0
means the whole regexp is matched - however now an integer can be passed
in here to instead select a subgroup of the expression (see
CondorLauncher and the mechanism will be clear).