Examples of initialize()

  • org.xtreemfs.babudb.sandbox.RandomGenerator.initialize()
    Generates the static meta-operations scenario. @param seed - has to be the same at every BabuDB. @return the operations scenario.
  • pdp.scrabble.game.Player.initialize()
  • persistence.antlr.collections.AST.initialize()
  • ptolemy.actor.Director.initialize()
    Initialize the model controlled by this director. Set the current time to the start time or the current time of the executive director, and then invoke the initialize() method of this director on each actor that is controlled by this director. If the container is not an instance of CompositeActor, do nothing. This method should typically be invoked once per execution, after the preinitialization phase, but before any iteration. It may be invoked in the middle of an execution, if reinitialization is desired. Since type resolution has been completed and the current time is set, the initialize() method of a contained actor may produce output or schedule events. If stop() is called during this methods execution, then stop initializing actors immediately. This method is not synchronized on the workspace, so the caller should be. @exception IllegalActionException If the initialize() method ofone of the associated actors throws it.
  • ptolemy.actor.Manager.initialize()
    Initialize the model. This calls the preinitialize() method of the container, followed by the resolveTypes() and initialize() methods. Set the Manager's state to PREINITIALIZING and INITIALIZING as appropriate. This method is read synchronized on the workspace. @exception KernelException If the model throws it. @exception IllegalActionException If the model is already running, orif there is no container.
  • ptolemy.copernicus.kernel.GeneratorAttribute.initialize()
    If this GeneratorAttribute has not yet been initialized, the initialized it by reading the moml file named by the initialParametersURL and creating Parameters and Variables accordingly.
  • ptolemy.distributed.common.DistributedActor.initialize()
    Begin execution of the actor. @exception RemoteException If a communication-related exception mayoccur during the execution of a remote method call.
  • ptolemy.graph.InequalityTerm.initialize()
    Initialize the value of this term to the specified CPO element. If this InequalityTerm is a simple variable that can be set to any CPO element, set the value of the variable to the specified argument. In this case, this method is equivalent to setValue() with the same argument. In some applications, this term is a structured object that only part of it is a simple variable. In this case, set that variable part to the specified argument. @param e An Object representing an element in the underlying CPO. @exception IllegalActionException If this term is not a variable.
  • q_impress.pmi.lib.services.loadsave.LoadingService.initialize()
  • q_impress.pmi.lib.services.loadsave.SavingService.initialize()
  • rs.frenjoynet.core.core.BaseFacade.initialize()
  • shapes.OtherClass.initialize()
    initialize

  • share.LogWriter.initialize()
    initialization
  • sicel.compiler.parser.Lexer.initialize()
  • sos.stresstest.dialogtest.SOSDialogTest.initialize()
  • structures.Network.initialize()
    Initializes individual columns within the entire Network.
  • sun.security.pkcs11.Secmod.initialize()
    Initialize this Secmod. @param configDir the directory containing the NSS configurationfiles such as secmod.db @param nssLibDir the directory containing the NSS libraries(libnss3.so or nss3.dll) or null if the library is on the system default shared library path @throws IOException if NSS has already been initialized,the specified directories are invalid, or initialization fails for any other reason
  • testrf.shared.TestRequestFactory.initialize()
  • uptimemart.Database.initialize()
    Creates the tables if the table does not already exist

    This method determines whether the SERVERS database has been created, if not create it.

  • us.b3k.kafka.ws.transforms.Transform.initialize()
  • vsv.VSVModel.initialize()
  • waffle.windows.auth.IWindowsCredentialsHandle.initialize()
    Initialize.
  • waffle.windows.auth.impl.WindowsSecurityContextImpl.initialize()
  • weka.experiment.InstanceQuery.initialize()
  • wpn.hdri.ss.engine.EngineInitializer.initialize()
  • xbird.xquery.func.constructor.CastingFunction.initialize()

  • Examples of org.aspectj.org.eclipse.jdt.internal.compiler.ClassFile.initialize()

        return sig.substring(1, sig.length()-1).toCharArray();
      }

      public void generateClass(CompilationResult result, ClassFile enclosingClassFile) {
        ClassFile classFile = new ClassFile(this);
        classFile.initialize(this, enclosingClassFile, false);
        classFile.recordInnerClasses(this);

        //classFile.addFieldInfos();
        classFile.contents[classFile.contentsOffset++] = (byte) 0;
        classFile.contents[classFile.contentsOffset++] = (byte) 0;
    View Full Code Here

    Examples of org.asteriskjava.live.DefaultAsteriskServer.initialize()

            final HtmlEventTracer tracer;
            final DefaultAsteriskServer server;

            tracer = new HtmlEventTracer();
            server = new DefaultAsteriskServer(args[0], args[1], args[2]);
            server.initialize();
            server.getManagerConnection().addEventListener(tracer);

            System.err.println("Event tracer successfully started. Press Ctrl-C to write trace file and exit.");

            Runtime.getRuntime().addShutdownHook(new Thread()
    View Full Code Here

    Examples of org.atmosphere.cpr.AtmosphereResource.initialize()

        AtmosphereResource atmosphereResource = new AtmosphereResourceImpl();
        AtmosphereRequest atmosphereRequest = AtmosphereRequest.wrap(wicketTester.getRequest());
        AtmosphereResponse atmosphereResponse = AtmosphereResponse.wrap(wicketTester.getResponse());
        TesterAsyncSupport asyncSupport = new TesterAsyncSupport();
        atmosphereResource.initialize(broadcaster.getApplicationConfig(), broadcaster, atmosphereRequest, atmosphereResponse,
            asyncSupport, new AtmosphereHandlerAdapter());

        atmosphereResource.setBroadcaster(broadcaster);
        broadcaster.addAtmosphereResource(atmosphereResource);
    View Full Code Here

    Examples of org.atmosphere.cpr.AtmosphereResourceImpl.initialize()

        AtmosphereResource atmosphereResource = new AtmosphereResourceImpl();
        AtmosphereRequest atmosphereRequest = AtmosphereRequest.wrap(wicketTester.getRequest());
        AtmosphereResponse atmosphereResponse = AtmosphereResponse.wrap(wicketTester.getResponse());
        TesterAsyncSupport asyncSupport = new TesterAsyncSupport();
        atmosphereResource.initialize(broadcaster.getApplicationConfig(), broadcaster, atmosphereRequest, atmosphereResponse,
            asyncSupport, new AtmosphereHandlerAdapter());

        atmosphereResource.setBroadcaster(broadcaster);
        broadcaster.addAtmosphereResource(atmosphereResource);
    View Full Code Here

    Examples of org.bouncycastle.jce.provider.JDKKeyPairGenerator.initialize()

        BigInteger publicExp = new BigInteger("10001", 16); // Fermat F4, largest known fermat prime

        try {
          JDKKeyPairGenerator gen = new JDKKeyPairGenerator.RSA();
          RSAKeyGenParameterSpec params = new RSAKeyGenParameterSpec(strength, publicExp);
          gen.initialize(params, new SecureRandom());
          return gen.generateKeyPair();
        } catch (InvalidAlgorithmParameterException e) {
          logger.error("Exception whil RSA key pair generation:", e);
        }
        return null;
    View Full Code Here

    Examples of org.brixcms.jcr.Jcr2WorkspaceManager.initialize()

        public static WorkspaceManager createWorkspaceManager(String url,
                                                              final JcrSessionFactory sessionFactory) {
            if (url == null || url.trim().length() == 0) {
                // create workspace manager for a file system repository
                Jcr2WorkspaceManager mgr = new Jcr2WorkspaceManager(sessionFactory);
                mgr.initialize();
                return mgr;
            } else if (url.startsWith("rmi://")) {
                // create rmi workspace manager
                return new ClientWorkspaceManager(url);
            } else {
    View Full Code Here

    Examples of org.broadinstitute.gatk.tools.walkers.varianteval.evaluators.VariantEvaluator.initialize()

            this.evaluationInstances = new ArrayList<VariantEvaluator>(evaluationClasses.size());

            for ( final Class<? extends VariantEvaluator> c : evaluationClasses ) {
                try {
                    final VariantEvaluator eval = c.newInstance();
                    if ( doInitialize ) eval.initialize(walker);
                    evaluationInstances.add(eval);
                } catch (InstantiationException e) {
                    throw new ReviewedGATKException("Unable to instantiate eval module '" + c.getSimpleName() + "'", e);
                } catch (IllegalAccessException e) {
                    throw new ReviewedGATKException("Illegal access error when trying to instantiate eval module '" + c.getSimpleName() + "'", e);
    View Full Code Here

    Examples of org.broadinstitute.gatk.tools.walkers.varianteval.stratifications.VariantStratifier.initialize()

                    Class<? extends VariantStratifier> c = classMap.get(module);

                    try {
                        VariantStratifier vs = c.newInstance();
                        vs.setVariantEvalWalker(variantEvalWalker);
                        vs.initialize();

                        strats.add(vs);
                    } catch (InstantiationException e) {
                        throw new GATKException("Unable to instantiate stratification module '" + c.getSimpleName() + "'");
                    } catch (IllegalAccessException e) {
    View Full Code Here

    Examples of org.broadinstitute.gatk.utils.recalibration.covariates.ReadGroupCovariate.initialize()

        @Test(enabled = true)
        public void testForceReadgroup() {
            final RecalibrationArgumentCollection forcedRAC = new RecalibrationArgumentCollection();
            forcedRAC.FORCE_READGROUP = "FOO";
            final ReadGroupCovariate forcedCovariate = new ReadGroupCovariate();
            forcedCovariate.initialize(forcedRAC);

            final GATKSAMReadGroupRecord rg = new GATKSAMReadGroupRecord("NOT_FOO");
            runTest(rg, "FOO", forcedCovariate);
        }
    View Full Code Here

    Examples of org.broadinstitute.gatk.utils.recalibration.covariates.RepeatCovariate.initialize()

            Arrays.fill(delQuals, (byte)PairHMMLikelihoodCalculationEngine.INITIAL_QSCORE);

            engine.applyPCRErrorModel(readString.getBytes(), insQuals, delQuals);

            final RepeatCovariate repeatCovariate = new RepeatLengthCovariate();
            repeatCovariate.initialize(PairHMMLikelihoodCalculationEngine.MAX_STR_UNIT_LENGTH, PairHMMLikelihoodCalculationEngine.MAX_REPEAT_LENGTH);

            for ( int i = 1; i < insQuals.length; i++ ) {

                final int repeatLengthFromCovariate = repeatCovariate.findTandemRepeatUnits(readString.getBytes(), i-1).getSecond();
                final byte adjustedScore = PairHMMLikelihoodCalculationEngine.getErrorModelAdjustedQual(repeatLengthFromCovariate, 3.0);
    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.