gpt4 book ai didi

hudson.os.solaris.ZFSInstaller.migrate()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-16 21:07:31 26 4
gpt4 key购买 nike

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

ZFSInstaller.migrate介绍

[英]Migrates $HUDSON_HOME to a new ZFS file system. TODO: do this in a separate JVM to elevate the privilege.
[中]将$HUDSON_HOME迁移到新的ZFS文件系统。TODO:在单独的JVM中执行此操作以提升权限。

代码示例

代码示例来源:origin: jenkinsci/jenkins

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = SystemProperties.getString(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      Functions.printStackTrace(e, listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

代码示例来源:origin: org.eclipse.hudson/hudson-core

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = System.getProperty(ZFSInstaller.class.getName() + ".migrate");
  if (migrationTarget != null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if (migrate(listener, migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      e.printStackTrace(listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if (zi.isActivated()) {
    return zi;
  }
  return null;
}

代码示例来源:origin: org.jvnet.hudson.main/hudson-core

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = System.getProperty(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      e.printStackTrace(listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

代码示例来源:origin: org.eclipse.hudson.main/hudson-core

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = System.getProperty(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      e.printStackTrace(listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

代码示例来源:origin: hudson/hudson-2.x

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = System.getProperty(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      e.printStackTrace(listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

@Extension
public static AdministrativeMonitor init() {
  String migrationTarget = SystemProperties.getString(ZFSInstaller.class.getName() + ".migrate");
  if(migrationTarget!=null) {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StreamTaskListener listener = new StreamTaskListener(new ForkOutputStream(System.out, out));
    try {
      if(migrate(listener,migrationTarget)) {
        // completed successfully
        return new MigrationCompleteNotice();
      }
    } catch (Exception e) {
      // if we let any exception from here, it will prevent Hudson from starting.
      Functions.printStackTrace(e, listener.error("Migration failed"));
    }
    // migration failed
    return new MigrationFailedNotice(out);
  }
  // install the monitor if applicable
  ZFSInstaller zi = new ZFSInstaller();
  if(zi.isActivated())
    return zi;
  return null;
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com