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


Python Path.join方法代碼示例

本文整理匯總了Python中subscription_manager.certdirectory.Path.join方法的典型用法代碼示例。如果您正苦於以下問題:Python Path.join方法的具體用法?Python Path.join怎麽用?Python Path.join使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在subscription_manager.certdirectory.Path的用法示例。


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

示例1: __init__

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def __init__(self, name='redhat.repo'):
     ConfigParser.__init__(self)
     # note PATH get's expanded with chroot info, etc
     self.path = Path.join(self.PATH, name)
     self.repos_dir = Path.abs(self.PATH)
     self.manage_repos = manage_repos_enabled()
     # Simulate manage repos turned off if no yum.repos.d directory exists.
     # This indicates yum is not installed so clearly no need for us to
     # manage repos.
     if not self.path_exists(self.repos_dir):
         log.warn("%s does not exist, turning manage_repos off." %
                 self.repos_dir)
         self.manage_repos = False
     self.create()
開發者ID:belonesox,項目名稱:subscription-manager,代碼行數:16,代碼來源:repolib.py

示例2: __init__

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def __init__(self, path=None, name=None):
     # note PATH get's expanded with chroot info, etc
     path = path or self.PATH
     name = name or self.NAME
     self.path = Path.join(path, name)
     self.repos_dir = Path.abs(path)
     self.manage_repos = manage_repos_enabled()
     # Simulate manage repos turned off if no repos directory exists.
     # This indicates the corresponding package manager is not installed so
     # clearly no need for us to manage repos.
     if not self.path_exists(self.repos_dir):
         log.warn("%s does not exist, turning manage_repos off." %
                 self.repos_dir)
         self.manage_repos = False
     else:
         self.create()
開發者ID:Januson,項目名稱:subscription-manager,代碼行數:18,代碼來源:repofile.py

示例3: __init__

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def __init__(self, name='redhat.repo'):
     ConfigParser.__init__(self)
     # note PATH get's expanded with chroot info, etc
     self.path = Path.join(self.PATH, name)
     self.repos_dir = Path.abs(self.PATH)
     self.manage_repos = 1
     if CFG.has_option('rhsm', 'manage_repos'):
         self.manage_repos = int(CFG.get('rhsm', 'manage_repos'))
     # Simulate manage repos turned off if no yum.repos.d directory exists.
     # This indicates yum is not installed so clearly no need for us to
     # manage repos.
     if not os.path.exists(self.repos_dir):
         log.warn("%s does not exist, turning manage_repos off." %
                 self.repos_dir)
         self.manage_repos = 0
     self.create()
開發者ID:cgwalters,項目名稱:subscription-manager,代碼行數:18,代碼來源:repolib.py

示例4: test_normal_pathjoin

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def test_normal_pathjoin(self):
     ed = EntitlementDirectory()
     self.assertEquals('/etc/pki/entitlement/1-key.pem',
             Path.join(ed.productpath(), "1-key.pem"))
開發者ID:jkonecny12,項目名稱:subscription-manager,代碼行數:6,代碼來源:test_certdirectory.py

示例5: test_sysimage_pathjoin

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def test_sysimage_pathjoin(self):
     Path.ROOT = '/mnt/sysimage'
     ed = EntitlementDirectory()
     self.assertEquals('/mnt/sysimage/etc/pki/entitlement/1-key.pem',
             Path.join(ed.productpath(), '1-key.pem'))
開發者ID:jkonecny12,項目名稱:subscription-manager,代碼行數:7,代碼來源:test_certdirectory.py

示例6: certpath

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def certpath():
     return str(Path.join(ConsumerIdentity.PATH, ConsumerIdentity.CERT))
開發者ID:Januson,項目名稱:subscription-manager,代碼行數:4,代碼來源:identity.py

示例7: keypath

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def keypath():
     return str(Path.join(ConsumerIdentity.PATH, ConsumerIdentity.KEY))
開發者ID:Januson,項目名稱:subscription-manager,代碼行數:4,代碼來源:identity.py

示例8: certpath

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def certpath(cls):
     return Path.join(cls.PATH, cls.CERT)
開發者ID:aweiteka,項目名稱:subscription-manager,代碼行數:4,代碼來源:identity.py

示例9: keypath

# 需要導入模塊: from subscription_manager.certdirectory import Path [as 別名]
# 或者: from subscription_manager.certdirectory.Path import join [as 別名]
 def keypath(cls):
     return Path.join(cls.PATH, cls.KEY)
開發者ID:aweiteka,項目名稱:subscription-manager,代碼行數:4,代碼來源:identity.py


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