Package com.sun.grid.jam.queue.entry

Examples of com.sun.grid.jam.queue.entry.ComputeInfoEntry


{
  public ComputeInfoEntry computeParams;

  public ComputeInfoParams()
  {
    computeParams = new ComputeInfoEntry();
  }
View Full Code Here


  public ComputeInfoParams(String manufacturer, String model, String
                           architetcture, String osName, String osRev,
                           String osArch, int processCount,
                           int tilingFactor)
  {
    computeParams = new ComputeInfoEntry(manufacturer,
           model,
           architetcture,
           osName,
           osRev,
           osArch,
View Full Code Here

                      QueueStatus.QUEUE_ENABLED,
                      new Boolean(true), // interactive
                      new Boolean(true), // batch
                      Boolean.FALSE, // dedicated
                      server.rmsName),
        new  ComputeInfoEntry("N/A", // manufacturer
                              "N/A", // model
                              "N/A", // architecture
                              "N/A", // OS name
                              "N/A", // OS revision
                              "N/A", // OS arch
View Full Code Here

                        new QueueStatus(queue.getState()),
                        new Boolean(queue.isInteractive()), // interactive
                        new Boolean(queue.isBatch()), // batch
                        Boolean.FALSE, // dedicated
                        server.rmsName),
          new  ComputeInfoEntry("N/A", // manufacturer
                                "N/A", // model
                                execHost.getArch(),
                                "N/A", // OS name
                                "N/A", // OS revision
                                "N/A", // OS arch
View Full Code Here

TOP

Related Classes of com.sun.grid.jam.queue.entry.ComputeInfoEntry

Copyright © 2018 www.massapicom. 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.