com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller.setUserName()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(3.0k)|赞(0)|评价(0)|浏览(88)

本文整理了Java中com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller.setUserName()方法的一些代码示例,展示了YarnInstaller.setUserName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YarnInstaller.setUserName()方法的具体详情如下:
包路径:com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller
类名称:YarnInstaller
方法名:setUserName

YarnInstaller.setUserName介绍

暂无

代码示例

代码示例来源:origin: jooby-project/jooby

@Override
protected NodeTask newTask(FrontendPluginFactory factory, Config conf, ProxyConfig proxy,
  Map<String, String> env, String nodeVersion) throws InstallationException {
 Function<String, String> property = key -> conf.hasPath(key) ? conf.getString(key) : null;
 factory.getYarnInstaller(proxy)
     .setYarnVersion(yarnVersion)
     .setYarnDownloadRoot(conf.getString("yarn.downloadRoot"))
     .setUserName(property.apply("yarn.username"))
     .setPassword(property.apply("yarn.password"))
     .install();
 YarnRunner yarn = factory.getYarnRunner(proxy, conf.getString("npm.registryURL"));
 return (cmd, args) -> {
  String cmdline = cmd + " " + Arrays.asList(args).stream().collect(Collectors.joining(" "));
  yarn.execute(cmdline, env);
 };
}

代码示例来源:origin: eirslett/frontend-maven-plugin

@Override
public void execute(FrontendPluginFactory factory) throws InstallationException {
  ProxyConfig proxyConfig = MojoUtils.getProxyConfig(this.session, this.decrypter);
  Server server = MojoUtils.decryptServer(this.serverId, this.session, this.decrypter);
  if (null != server) {
    factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
      .setNodeVersion(this.nodeVersion).setPassword(server.getPassword())
      .setUserName(server.getUsername()).install();
    factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
      .setYarnVersion(this.yarnVersion).setUserName(server.getUsername())
      .setPassword(server.getPassword()).install();
  } else {
    factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
      .setNodeVersion(this.nodeVersion).install();
    factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
      .setYarnVersion(this.yarnVersion).install();
  }
}

代码示例来源:origin: com.github.eirslett/frontend-maven-plugin

@Override
public void execute(FrontendPluginFactory factory) throws InstallationException {
  ProxyConfig proxyConfig = MojoUtils.getProxyConfig(this.session, this.decrypter);
  Server server = MojoUtils.decryptServer(this.serverId, this.session, this.decrypter);
  if (null != server) {
    factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
      .setNodeVersion(this.nodeVersion).setPassword(server.getPassword())
      .setUserName(server.getUsername()).install();
    factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
      .setYarnVersion(this.yarnVersion).setUserName(server.getUsername())
      .setPassword(server.getPassword()).install();
  } else {
    factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
      .setNodeVersion(this.nodeVersion).install();
    factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
      .setYarnVersion(this.yarnVersion).install();
  }
}

相关文章