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


Python Plugin.Plugin类代码示例

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


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

示例1: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.set_priority(100)
开发者ID:OndrejSlamecka,项目名称:setroubleshoot,代码行数:3,代码来源:httpd_write_content.py

示例2: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.level="green"
开发者ID:dperpeet,项目名称:setroubleshoot,代码行数:3,代码来源:rsync_data.py

示例3: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.set_priority(100)
     self.level = "green"
     self.fixable = True
     self.button_text=_("Restore\nContext")
开发者ID:fedora-selinux,项目名称:setroubleshoot,代码行数:6,代码来源:restorecon_source.py

示例4: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
开发者ID:OndrejSlamecka,项目名称:setroubleshoot,代码行数:2,代码来源:qemu_blk_image.py

示例5: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.set_priority(8)
     self.level = "yellow"
开发者ID:OndrejSlamecka,项目名称:setroubleshoot,代码行数:4,代码来源:openvpn.py

示例6: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.fixable = True
     self.button_text = _("Disable SELinux controls on Chrome plugins")
     self.set_priority(50)
开发者ID:fedora-selinux,项目名称:setroubleshoot,代码行数:5,代码来源:chrome.py

示例7: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.fixable = True
     self.button_text = _("Enable booleans.")
开发者ID:fedora-selinux,项目名称:setroubleshoot,代码行数:4,代码来源:allow_ftpd_use_nfs.py

示例8: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.set_priority(1)
     self.report_bug = True
开发者ID:dperpeet,项目名称:setroubleshoot,代码行数:4,代码来源:catchall.py

示例9: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.fixable=True
     self.button_text=_("Turn off memory protection")
开发者ID:OndrejSlamecka,项目名称:setroubleshoot,代码行数:4,代码来源:vbetool.py

示例10: __init__

 def __init__(self):
     Plugin.__init__(self,__name__)
     self.level="green"
     self.set_priority(8)
开发者ID:fedora-selinux,项目名称:setroubleshoot,代码行数:4,代码来源:file.py

示例11: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.level="yellow"
     self.fixable=True
     self.button_text=_("Restore Context")
开发者ID:fedora-selinux,项目名称:setroubleshoot,代码行数:5,代码来源:sshd_root.py

示例12: __init__

 def __init__(self):
     Plugin.__init__(self, __name__)
     self.set_priority(10)
     self.level="red"
开发者ID:fedora-selinux,项目名称:setroubleshoot,代码行数:4,代码来源:mmap_zero.py


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