Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/19 23:20:52 (5 years ago)
Author:
abeham
Message:

Added further projects useful for interfacing with irace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/tools/HeuristicLab.HiveDrain/HiveStatus/Options.cs

    r15921 r16667  
    2525namespace HiveStatus {
    2626  internal class Options {
    27     [Option('u', "user", HelpText = "Username")]
     27    [Value(0, HelpText = "Job ID to check status for, if omitted all jobs of the user will be checked.", Required = false)]
     28    public Guid JobId { get; set; }
     29
     30    [Option('u', "user", HelpText = "There are three ways to supply login information, by argument (here), by config file or by being prompted for it.")]
    2831    public string Username { get; set; }
    29     [Option('p', "password", HelpText = "Password")]
     32    [Option('p', "password", HelpText = "There are three ways to supply login information, by argument (here), by config file or by being prompted for it.")]
    3033    public string Password { get; set; }
    31 
    32     [Option('a', "all", HelpText = "Checks status of all jobs.", SetName = "ALL")]
    33     public bool All { get; set; }
    34     [Option('j', "job", HelpText = "Checks status of a certain job", SetName = "SINGLE")]
    35     public Guid JobId { get; set; }
    36     [Option('v', "verbose", HelpText = "More detailed status of a job")]
     34   
     35    [Option('v', "verbose", HelpText = "More detailed/expensive status check")]
    3736    public bool Verbose { get; set; }
    3837  }
Note: See TracChangeset for help on using the changeset viewer.