Example #1
0
 def __init__(self, worker):
     FilenamesOnStdinExecutor.__init__(self, worker)
Example #2
0
    def check_args_valid(cls, args, n_outputs):

        FilenamesOnStdinExecutor.check_args_valid(args, n_outputs)
        if "lib" not in args or "class" not in args:
            raise BlameUserException('Incorrect arguments to the dotnet executor: %s' % repr(args))
Example #3
0
    def check_args_valid(cls, args, n_outputs):

        FilenamesOnStdinExecutor.check_args_valid(args, n_outputs)
        if "lib" not in args or "entry_point" not in args:
            raise BlameUserException("Incorrect arguments to the C-so executor: %s" % repr(args))