Examples of run()


Examples of org.ar.domainspecific.processors.OntologyProcessor.run()

   */
  public static void main(String[] args)
  {
   
    Processor processor = new OntologyProcessor();
    processor.run(URI.create("file:datasets/Economy-TBox.owl"), "output-rank-csv/Economy.csv");
    //processor.run(URI.create("file:datasets/GeneRegulation-GRO-100-Tbox.owl"), "output-rank-csv/GeneRegulation-GRO-100.csv");
    //processor.run(URI.create("file:datasets/LKIF-100-Tbox.owl"), "output-rank-csv/LKIF-100.csv");
    processor.run(URI.create("file:datasets/People-Tbox.owl"), "output-rank-csv/People.csv");
    processor.run(URI.create("file:datasets/Process-Tbox.owl"), "output-rank-csv/Process.csv");
    processor.run(URI.create("file:datasets/Pizza-Tbox.owl"), "output-rank-csv/Pizza.csv");
View Full Code Here

Examples of org.aspectj.tools.ajc.Main.run()

            // XXX avoid rendering if not verbosely logging?
            log("Running  in-process using "
                + Ajc10.render(cmd.getCommandline()), Project.MSG_VERBOSE);
         
          Main main = new Main();
          main.run(args, holder);
          int errs = holder.numMessages(IMessage.ERROR, true);
          if (0 < errs) {
            result = 1;
          } else {
                result = 0;
View Full Code Here

Examples of org.asteriskjava.fastagi.DefaultAgiClient.run()

    setupGui(script);

    DefaultAgiClient client = new DefaultAgiClient(host, port, script);
    client.setCallerId(callerId);
    client.setNetworkScript("index.agi");
    client.run();
  }

  private static void setupGui(AgiClientScriptImpl script) {

    JFrame frame = new JFrame();
View Full Code Here

Examples of org.asteriskjava.fastagi.internal.AgiClientConnection.run()

  }

  public Future<?> run() throws IOException {
    SocketConnectionFacade socket = createClientSocket();
    AgiClientConnection connection = new AgiClientConnection(socket);
    return connection.run(script, _parameters);
  }

}
View Full Code Here

Examples of org.asturlinux.frade.currin.machine.Machine.run()

  if (cr.inHNF()) {
      return cr;
  }

  Machine local = m.getNewMachine();
  local.run(((CurrinFunction)cr.getReference()).getId(),
      ((CurrinFunction)cr.getReference()).getRefParameters());
  cr.setReference(local.getResult().getReference());
  return cr;
    }
}
View Full Code Here

Examples of org.asturlinux.frade.currin.program.Function.run()

  } catch (InterpreterException ie) {
      main = BuiltInRepository.getInstance().getBuiltInFunction(function_name);
  }

  //Function loads her own code (to allow builtin functions)
  main.run(this, run_parameters);

        Logger logger = Logger.getLogger("Runtime");
  logger.info("Begins execution of function " + function_name);

  Instruction i;
View Full Code Here

Examples of org.atomojo.app.util.CopyFeedTask.run()

               getResponse().setStatus(Status.CLIENT_ERROR_BAD_REQUEST);
               return new StringRepresentation("Cannot find parent of destination "+dest);
            }
            getLogger().info("Copy from "+feed.getPath()+" to "+targetParent.getPath()+"/"+segments[segments.length-1]);
            CopyFeedTask task = new CopyFeedTask(app,user,feed,targetParent,segments[segments.length-1]);
            task.run();
            if (task.getErrors().size()>0) {
               StringBuilder builder = new StringBuilder();
               for (String error : task.getErrors()) {
                  builder.append(error);
                  builder.append("\n");
View Full Code Here

Examples of org.auraframework.instance.Action.run()

        params.put("section", section);
        params.put("name", name);

        Action instance = (Action) Aura.getInstanceService().getInstance(getLabelDesc,
                ActionDef.class, params);
        instance.run();
        assertEquals(expectedStatus, instance.getState());
        assertEquals(expectedLabel, instance.getReturnValue());

        return instance;
    }
View Full Code Here

Examples of org.auraframework.service.ServerService.run()

        Action e = new ShareCmpAction("e",b,sharedCmp,attributesB);
        Action f = new ShareCmpAction("f",c,sharedCmp,attributesC);
        List<Action> actions = Lists.newArrayList(d,e,f);
        Message message = new Message(actions);
        //run the list of actions.
        ss.run(message, Aura.getContextService().getCurrentContext(), sw, null);
       
        //sanity check, sharedCmp should have the latest attribute value.
        //this has nothing to do with the fix though
        assertEquals("attrC",sharedCmp.getAttributes().getValue("attr"));
        //Here are the checks for fix
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.threads.ExportHtmlThread.run()

            AnalysisResultManager resultManager = new AnalysisResultManager(AnalysisType.BAM_QC);
            resultManager.addReporter(reporter);

            Thread exportReportThread = new ExportHtmlThread(resultManager,sampleOutdir);
            exportReportThread.run();
            loggerThread.updateProgress(100);
            loggerThread.logLine("Finished processing " + bamFilePath + "\n");
            loggerThread.logLine("BAM QC results are saved to  " + sampleOutdir + "\n");

            s.path = sampleOutdir;
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.