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


Python Java.global_javac_classpath方法代码示例

本文整理汇总了Python中pants.backend.jvm.subsystems.java.Java.global_javac_classpath方法的典型用法代码示例。如果您正苦于以下问题:Python Java.global_javac_classpath方法的具体用法?Python Java.global_javac_classpath怎么用?Python Java.global_javac_classpath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pants.backend.jvm.subsystems.java.Java的用法示例。


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

示例1: _tools_classpath

# 需要导入模块: from pants.backend.jvm.subsystems.java import Java [as 别名]
# 或者: from pants.backend.jvm.subsystems.java.Java import global_javac_classpath [as 别名]
  def _tools_classpath(self):
    """Returns a classpath representing the (equivalent of the) `tools.jar`.

    If `javac` has been set explicitly, it is used. Otherwise, searches the current distribution.
    """

    javac_classpath = Java.global_javac_classpath(self.context.products)
    if javac_classpath:
      return javac_classpath

    self.set_distribution(jdk=True)
    jars = self.dist.find_libs(['tools.jar'])
    if len(jars) != 1:
      raise TaskError('Expected a single `tools.jar` entry for {}; got: {}'.format(
        self.dist, jars))
    return jars
开发者ID:cosmicexplorer,项目名称:pants,代码行数:18,代码来源:provide_tools_jar.py

示例2: javac_classpath

# 需要导入模块: from pants.backend.jvm.subsystems.java import Java [as 别名]
# 或者: from pants.backend.jvm.subsystems.java.Java import global_javac_classpath [as 别名]
 def javac_classpath(self):
   # Note that if this classpath is empty then Zinc will automatically use the javac from
   # the JDK it was invoked with.
   return Java.global_javac_classpath(self.context.products)
开发者ID:simeonf,项目名称:pants,代码行数:6,代码来源:zinc_compile.py


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