当前位置: 首页>>代码示例>>Python>>正文


Python conf.combine_cmds函数代码示例

本文整理汇总了Python中mrjob.conf.combine_cmds函数的典型用法代码示例。如果您正苦于以下问题:Python combine_cmds函数的具体用法?Python combine_cmds怎么用?Python combine_cmds使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了combine_cmds函数的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _fix_opt

    def _fix_opt(self, opt_key, opt_value, source):
        """Check sh_bin"""
        opt_value = super(MRJobBinRunner, self)._fix_opt(
            opt_key, opt_value, source)

        # check that sh_bin doesn't have too many args
        if opt_key == 'sh_bin':
            # opt_value is usually a string, combiner makes it a list of args
            sh_bin = combine_cmds(opt_value)

            # empty sh_bin just means to use the default, see #1926

            # make these hard requirements in v0.7.0?
            if len(sh_bin) > 1 and not os.path.isabs(sh_bin[0]):
                log.warning('sh_bin (from %s) should use an absolute path'
                            ' if you want it to take arguments' % source)
            elif len(sh_bin) > 2:
                log.warning('sh_bin (from %s) should not take more than one'
                            ' argument' % source)

        return opt_value
开发者ID:Affirm,项目名称:mrjob,代码行数:21,代码来源:bin.py

示例2: test_convert_to_list

 def test_convert_to_list(self):
     assert_equal(combine_cmds('sort', ('grep', '-E')), ['grep', '-E'])
开发者ID:gimlids,项目名称:LTPM,代码行数:2,代码来源:conf_test.py

示例3: test_parse_empty_string

 def test_parse_empty_string(self):
     assert_equal(combine_cmds(''), [])
开发者ID:gimlids,项目名称:LTPM,代码行数:2,代码来源:conf_test.py

示例4: test_parse_string

 def test_parse_string(self):
     assert_equal(combine_cmds('sort', 'grep', 'cat'), ['cat'])
     assert_equal(combine_cmds(['python'], 'python -S'), ['python', '-S'])
开发者ID:gimlids,项目名称:LTPM,代码行数:3,代码来源:conf_test.py

示例5: test_all_None

 def test_all_None(self):
     assert_equal(combine_cmds(None, None, None), None)
开发者ID:gimlids,项目名称:LTPM,代码行数:2,代码来源:conf_test.py

示例6: test_picks_last_value

 def test_picks_last_value(self):
     assert_equal(combine_cmds(['sort'], ['grep'], ['cat']), ['cat'])
开发者ID:gimlids,项目名称:LTPM,代码行数:2,代码来源:conf_test.py

示例7: test_empty

 def test_empty(self):
     assert_equal(combine_cmds(), None)
开发者ID:gimlids,项目名称:LTPM,代码行数:2,代码来源:conf_test.py

示例8: test_all_None

 def test_all_None(self):
     self.assertEqual(combine_cmds(None, None, None), None)
开发者ID:icio,项目名称:mrjob,代码行数:2,代码来源:test_conf.py

示例9: test_empty

 def test_empty(self):
     self.assertEqual(combine_cmds(), None)
开发者ID:icio,项目名称:mrjob,代码行数:2,代码来源:test_conf.py

示例10: test_unicode

 def test_unicode(self):
     self.assertEqual(combine_cmds(u"wunderbar!"), ["wunderbar!"])
开发者ID:nyccto,项目名称:mrjob,代码行数:2,代码来源:test_conf.py

示例11: test_convert_to_list

 def test_convert_to_list(self):
     self.assertEqual(combine_cmds("sort", ("grep", "-E")), ["grep", "-E"])
开发者ID:nyccto,项目名称:mrjob,代码行数:2,代码来源:test_conf.py

示例12: test_parse_empty_string

 def test_parse_empty_string(self):
     self.assertEqual(combine_cmds(""), [])
开发者ID:nyccto,项目名称:mrjob,代码行数:2,代码来源:test_conf.py

示例13: test_parse_string

 def test_parse_string(self):
     self.assertEqual(combine_cmds("sort", "grep", "cat"), ["cat"])
     self.assertEqual(combine_cmds(["python"], "python -S"), ["python", "-S"])
开发者ID:nyccto,项目名称:mrjob,代码行数:3,代码来源:test_conf.py

示例14: test_picks_last_value

 def test_picks_last_value(self):
     self.assertEqual(combine_cmds(["sort"], ["grep"], ["cat"]), ["cat"])
开发者ID:nyccto,项目名称:mrjob,代码行数:2,代码来源:test_conf.py


注:本文中的mrjob.conf.combine_cmds函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。