Examples of bootstrap()


Examples of org.sdnplatform.sync.internal.config.bootstrap.Bootstrap.bootstrap()

                                                 keyStorePath,
                                                 keyStorePassword);
                    bs.init();
                    try {
                        for (HostAndPort host : hosts) {
                            if (bs.bootstrap(host, localNode))
                                break;
                        }
                    } finally {
                        bs.shutdown();
                    }
View Full Code Here

Examples of org.sonar.api.batch.bootstrap.ProjectBootstrapper.bootstrap()

        || "true".equals(settings.getString("sonar.mojoUseRunner"))) {
        // Use default SonarRunner project bootstrapper
        ProjectReactorBuilder builder = getComponentByType(ProjectReactorBuilder.class);
        reactor = builder.execute();
      } else {
        reactor = bootstrapper.bootstrap();
      }
      if (reactor == null) {
        throw new SonarException(bootstrapper + " has returned null as ProjectReactor");
      }
      add(reactor);
View Full Code Here

Examples of org.strecks.builder.Bootstrapper.bootStrap()

  protected void postInit(ActionServlet servlet, ModuleConfig config)
  {
    setServletContext(servlet.getServletContext());

    Bootstrapper bootstrapper = new Bootstrapper();
    bootstrapper.bootStrap();
    Builder builder = bootstrapper.getBuilder();
    builder.build(config.getPrefix());

    setDelegate(builder.getControllerDelegate());
    setFormHandler(builder.getFormHandler());
View Full Code Here

Examples of org.strecks.builder.Bootstrapper.bootStrap()

  protected void postInit(ActionServlet servlet, ModuleConfig config)
  {
    setServletContext(servlet.getServletContext());

    Bootstrapper bootstrapper = new Bootstrapper();
    bootstrapper.bootStrap();
    Builder builder = bootstrapper.getBuilder();
    builder.build(config.getPrefix());

    setDelegate(builder.getControllerDelegate());
    setFormHandler(builder.getFormHandler());
View Full Code Here

Examples of org.xmlBlaster.contrib.replication.I_DbSpecific.bootstrap()

            catch (Exception ex) {
            }
         }
         log.info("setUp: cleanup done, going to bootstrap now ...");
         boolean force = true;
         dbSpecific.bootstrap(conn, doWarn, force);
         dbSpecific.shutdown();
         pool.shutdown();
         pool = null;
         dbSpecific = null;
         tmpInfo = null;
View Full Code Here

Examples of org.xmlBlaster.contrib.replication.I_DbSpecific.bootstrap()

                     throw new Exception("ReplicationAgent.init: the db pool is null");
                  Connection conn = pool.reserve();
                  try {
                     boolean doWarn = false;
                     boolean force = false;
                     dbSpecific.bootstrap(conn, doWarn, force);
                  }
                  catch (Exception ex) {
                     conn = SpecificDefault.removeFromPool(conn, SpecificDefault.ROLLBACK_YES, pool);
                  }
                  finally {
View Full Code Here

Examples of org.xmlBlaster.contrib.replication.I_DbSpecific.bootstrap()

            catch (Exception ex) {
            }
         }
         log.info("setUp: cleanup done, going to bootstrap now ...");
         boolean force = true;
         dbSpecific.bootstrap(conn, doWarn, force);
         dbSpecific.shutdown();
         dbSpecific = null;
         tmpInfo = null;
      }
      catch (Exception ex) {
View Full Code Here

Examples of skadistats.clarity.parser.DemoInputStream.bootstrap()

public class Clarity {

    private static DemoInputStream demoInputStreamForStream(InputStream stream, Profile... profile) throws IOException {
      DemoInputStream d = new DemoInputStream(stream, profile);
      d.bootstrap();
      return d;
    }

    @Deprecated
    public static DemoInputStreamIterator iteratorForFile(String fileName, Profile... profile) throws IOException {
View Full Code Here

Examples of st.redline.classloader.SmalltalkClassLoader.bootstrap()

    }

    @Test
    public void shouldBootstrapClassLoader() throws Exception {
        SmalltalkClassLoader classLoader = new SmalltalkClassLoader(classBuilder, bootstrapper, false);
        classLoader.bootstrap();
        verify(bootstrapper).bootstrap((SmalltalkClassLoader) any());
    }

    @Test
    public void shouldUseNonTracingClassLoaderWhenRequested() {
View Full Code Here

Examples of wpn.hdri.ss.EngineTestBootstrap.bootstrap()

    private Engine engine;

    @Before
    public void before() {
        EngineTestBootstrap bootstrap = new EngineTestBootstrap();
        bootstrap.bootstrap();
        engine = bootstrap.getEngine();
    }

    @After
    public void after() {
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.