Examples of DumbSlave


Examples of hudson.slaves.DumbSlave

        synchronized (hudson) {
            // this synchronization block is so that we don't end up adding the same slave name more than once.

            int sz = hudson.getNodes().size();

            DumbSlave slave = new DumbSlave("slave" + sz, "dummy",
            createTmpDir().getPath(), "1", Mode.NORMAL, labels==null?"":labels, createComputerLauncher(env), RetentionStrategy.NOOP, Collections.EMPTY_LIST);
        hudson.addNode(slave);
        return slave;
      }
    }
View Full Code Here

Examples of hudson.slaves.DumbSlave

                                                unregister();
                                            }
                                        };
        waiter.register();

        DumbSlave s = createSlave(l, env);
        latch.await();

        return s;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.