當前位置: 首頁>>代碼示例>>Python>>正文


Python stepsequence.StepSequence類代碼示例

本文整理匯總了Python中webkitpy.tool.commands.stepsequence.StepSequence的典型用法代碼示例。如果您正苦於以下問題:Python StepSequence類的具體用法?Python StepSequence怎麽用?Python StepSequence使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了StepSequence類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: AbstractSequencedCommand

class AbstractSequencedCommand(AbstractDeclarativeCommand):
    steps = None
    def __init__(self):
        self._sequence = StepSequence(self.steps)
        AbstractDeclarativeCommand.__init__(self, self._sequence.options())

    def _prepare_state(self, options, args, tool):
        return None

    def execute(self, options, args, tool):
        self._sequence.run_and_handle_errors(tool, options, self._prepare_state(options, args, tool))
開發者ID:Andersbakken,項目名稱:check-coding-style,代碼行數:11,代碼來源:abstractsequencedcommand.py

示例2: AbstractSequencedCommand

class AbstractSequencedCommand(AbstractDeclarativeCommand):
    steps = None
    def __init__(self):
        self._sequence = StepSequence(self.steps)
        AbstractDeclarativeCommand.__init__(self, self._sequence.options())

    def _prepare_state(self, options, args, tool):
        return None

    def execute(self, options, args, tool):
        try:
            state = self._prepare_state(options, args, tool)
        except ScriptError, e:
            log(e.message_with_output())
            exit(e.exit_code or 2)

        self._sequence.run_and_handle_errors(tool, options, state)
開發者ID:0x4d52,項目名稱:JavaScriptCore-X,代碼行數:17,代碼來源:abstractsequencedcommand.py

示例3: AbstractPatchSequencingCommand

class AbstractPatchSequencingCommand(AbstractPatchProcessingCommand):
    prepare_steps = None
    main_steps = None

    def __init__(self):
        options = []
        self._prepare_sequence = StepSequence(self.prepare_steps)
        self._main_sequence = StepSequence(self.main_steps)
        options = sorted(set(self._prepare_sequence.options() + self._main_sequence.options()))
        AbstractPatchProcessingCommand.__init__(self, options)

    def _prepare_to_process(self, options, args, tool):
        self._prepare_sequence.run_and_handle_errors(tool, options)

    def _process_patch(self, patch, options, args, tool):
        state = { "patch" : patch }
        self._main_sequence.run_and_handle_errors(tool, options, state)
開發者ID:Andersbakken,項目名稱:check-coding-style,代碼行數:17,代碼來源:download.py

示例4: __init__

 def __init__(self):
     self._sequence = StepSequence(self.steps)
     AbstractDeclarativeCommand.__init__(self, self._sequence.options())
開發者ID:venkatarajasekhar,項目名稱:Qt,代碼行數:3,代碼來源:abstractsequencedcommand.py

示例5: __init__

 def __init__(self):
     self._sequence = StepSequence(self.steps)
     Command.__init__(self, self._sequence.options())
開發者ID:SchleunigerAG,項目名稱:WinEC7_Qt5.3.1_Fixes,代碼行數:3,代碼來源:abstractsequencedcommand.py


注:本文中的webkitpy.tool.commands.stepsequence.StepSequence類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。