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 sicel.compiler.parser.Lexer.initialize()

      }
     
      public static void main(String[] args) throws IOException
      {
        Lexer lexer = new LexerImpl();
        lexer.initialize( new File( "input.txt" ) );
        //System.out.println( lexer.lookAhead( 30 ) );
       
        Token t;
        while( ( t = lexer.take() ) != null )
        {
    View Full Code Here

    Examples of sos.stresstest.dialogtest.SOSDialogTest.initialize()

              /* if (dialogTest.initialize(this.configFile)) {
                  throw new Exception("error occurred initializing SOSDialogTest");
              }*/
          //dialogTest.initialize(this.configFile);
          SOSSettings settings = new SOSProfileSettings(configFile);
          dialogTest.initialize(settings);
              dialogTest.execute();
             
          } catch (Exception e) {
              spooler_log.warn("error occurred in JobSchedulerDialogTest: " + e.getMessage());
              rc = false;
    View Full Code Here

    Examples of structures.Network.initialize()

         
          Network n = new Network(main.Main.NUM_COLS);
         
          try
          {
            n.initialize(null);
          }
          catch(InitializationException e)
          {
            e.printStackTrace();
            System.exit(0);
    View Full Code Here

    Examples of sun.security.pkcs11.Secmod.initialize()

                            if (nssSecmodDirectory != null) {
                                throw new ProviderException
                                ("nssSecmodDirectory must not be specified in noDb mode");
                            }
                        }
                        secmod.initialize(nssDbMode, nssSecmodDirectory, nssLibraryDirectory);
                    }
                } catch (IOException e) {
                    // XXX which exception to throw
                    throw new ProviderException("Could not initialize NSS", e);
                }
    View Full Code Here

    Examples of testrf.shared.TestRequestFactory.initialize()

            log.log(Level.SEVERE, e.getMessage(), e);
          }
        });

        final TestRequestFactory requests = GWT.create(TestRequestFactory.class);
        requests.initialize(eventBus);

        RequestFactoryLogHandler.LoggingRequestProvider provider = new RequestFactoryLogHandler.LoggingRequestProvider() {
          @Override
          public LoggingRequest getLoggingRequest() {
            return requests.loggingRequest();
    View Full Code Here

    Examples of uptimemart.Database.initialize()

            }
            //</editor-fold>

            //Set up the tables in the db
            Database db = new Database();
            db.initialize();

            // Begin running the server
            HttpServer mock_server = HttpServer.create(new InetSocketAddress(8000), 0);
            mock_server.createContext("/", new HTTPHandler());
            mock_server.setExecutor(null); // creates a default executor
    View Full Code Here

    Examples of us.b3k.kafka.ws.transforms.Transform.initialize()

        private final Properties configProps;
        private final Transform outputTransform;

        static public KafkaConsumerFactory create(Properties configProps, Class outputTransformClass) throws IllegalAccessException, InstantiationException {
            Transform outputTransform = (Transform)outputTransformClass.newInstance();
            outputTransform.initialize();
            return new KafkaConsumerFactory(configProps, outputTransform);
        }

        private KafkaConsumerFactory(Properties configProps, Transform outputTransform) {
            this.configProps = configProps;
    View Full Code Here

    Examples of vsv.VSVModel.initialize()

        Recorder.setHostDirectory("/Users/jaywarrick/Desktop/JavaModelOutputs");
        // Recorder.setHostDirectory("C:\\Users\\ctimm\\Desktop\\JavaModelOutputs");
       
        TestSim sim = new TestSim();
        VSVModel model = new VSVModel(); // initializes the model (cell, virus and reactions)
        model.initialize();
        sim.setParams(model, 6 * 60 * 60, 1.0, 15 * 60); // sets the simulation parameters
        sim.call();
       
      }
     
    View Full Code Here

    Examples of waffle.windows.auth.IWindowsCredentialsHandle.initialize()

                throw new Win32Exception(WinError.SEC_E_INVALID_TOKEN);
            }

            final IWindowsCredentialsHandle serverCredential = new WindowsCredentialsHandleImpl(null,
                    Sspi.SECPKG_CRED_INBOUND, securityPackage);
            serverCredential.initialize();

            WindowsSecurityContextImpl sc;

            int rc;
            int tokenSize = Sspi.MAX_TOKEN_SIZE;
    View Full Code Here

    Examples of waffle.windows.auth.impl.WindowsSecurityContextImpl.initialize()

                // initial client security context
                clientContext = new WindowsSecurityContextImpl();
                clientContext.setPrincipalName(WindowsAccountImpl.getCurrentUsername());
                clientContext.setCredentialsHandle(clientCredentials.getHandle());
                clientContext.setSecurityPackage(securityPackage);
                clientContext.initialize(null, null, WindowsAccountImpl.getCurrentUsername());
                final SimpleHttpRequest request = new SimpleHttpRequest();
                request.setMethod("POST");
                request.setContentLength(0);
                final String clientToken = BaseEncoding.base64().encode(clientContext.getToken());
                request.addHeader("Authorization", securityPackage + " " + clientToken);
    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.