Examples of SystemInfo


Examples of com.cloudera.flume.util.SystemInfo

    this.vmInfo = new FlumeVMInfo(PHYSICAL_NODE_REPORT_PREFIX
        + this.physicalNodeName + ".");

    this.reportPusher = new MasterReportPusher(FlumeConfiguration.get(),
        simpleReportManager, rpcMan);
    this.sysInfo = new SystemInfo(PHYSICAL_NODE_REPORT_PREFIX
        + this.physicalNodeName + ".");
  }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.mgt.SystemInfo

            StageBuilder.init() ;
            ARQMgt.init() ;         // After context and after PATH/NAME/VERSION/BUILD_DATE are set
            MappingRegistry.addPrefixMapping(ARQ.arqSymbolPrefix, ARQ.arqParamNS) ;
           
            // This is the pattern for any subsystem to register.
            SystemInfo sysInfo = new SystemInfo(ARQ.arqIRI, ARQ.PATH, ARQ.VERSION, ARQ.BUILD_DATE) ;
            SystemARQ.registerSubSystem(sysInfo) ;

            // Register RIOT details here, not earlier, to avoid
            // initialization loops with RIOT.init() called directly.
            RIOT.register() ;
View Full Code Here

Examples of com.hp.hpl.jena.sparql.mgt.SystemInfo

public class TDBMgt
{
    public static void init()
    {
        String NS = TDB.PATH ;
        SystemInfo sysInfo = new SystemInfo(TDB.tdbIRI, TDB.PATH, TDB.VERSION, TDB.BUILD_DATE) ;
//        ARQMgt.register(NS+".system:type=SystemInfo", sysInfo) ;
//        ARQMgt.register(NS+".system2:type=SystemInfo", new TDBSystemInfo()) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.mgt.SystemInfo

        initlization2() ;
    }

    private static void initlization2()
    {
        SystemInfo systemInfo = new SystemInfo(SDB.sdbIRI, SDB.PATH, SDB.VERSION, SDB.BUILD_DATE) ;
        SystemARQ.registerSubSystem(systemInfo) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.mgt.SystemInfo

        registered = true ;

        VERSION = getVersion() ;
        BUILD_DATE = getBuildDate() ;

        SystemInfo sysInfo2 = new SystemInfo(RIOT.riotIRI, RIOT.PATH, VERSION, BUILD_DATE) ;
        SystemARQ.registerSubSystem(sysInfo2) ;
    }
View Full Code Here

Examples of com.hp.hpl.jena.sparql.mgt.SystemInfo

        initialization2() ;
    }

    private static void initialization2() {
        // Set management information.
        SystemInfo systemInfo = new SystemInfo(TDB.tdbIRI, TDB.PATH, TDB.VERSION, TDB.BUILD_DATE) ;
        SystemARQ.registerSubSystem(systemInfo) ;
    }
View Full Code Here

Examples of com.streamreduce.core.model.SystemInfo

        bootstrapUsersAndAccounts();
    }

    private void bootstrapSystemInfo() {
        ResourceBundle resourceBundle = ResourceBundle.getBundle("application");
        SystemInfo systemStatus = systemStatusDAO.getLatest();
        if (systemStatus == null) {
            systemStatus = new SystemInfo();
        }
        systemStatus.setAppVersion(resourceBundle.getString("nodeable.version"));
        systemStatus.setBuildNumber(resourceBundle.getString("nodeable.build"));
        systemStatusDAO.save(systemStatus);
    }
View Full Code Here

Examples of com.sun.appserv.management.base.SystemInfo

        final PropertyGetter     getter,
        final List<Class<junit.framework.TestCase>>         classes )
    {
    final boolean  offline  = getter.getboolean( TEST_OFFLINE_KEY );
   
    final SystemInfo    systemInfo  = domainRoot == null ? null : domainRoot.getSystemInfo();
   
    final boolean   clustersSupported   = systemInfo == null ?
        false : systemInfo.supportsFeature( SystemInfo.CLUSTERS_FEATURE );
       
    final boolean   multipleServersSupported   = systemInfo == null ?
        false : systemInfo.supportsFeature( SystemInfo.MULTIPLE_SERVERS_FEATURE );
       
    final boolean   monitorsSupported   = ! offline;
   
    final List<Class<junit.framework.TestCase>>   included   = new ArrayList<Class<junit.framework.TestCase>>();
    final List<Class<junit.framework.TestCase>>   omitted    = new ArrayList<Class<junit.framework.TestCase>>();
View Full Code Here

Examples of jnode.main.SystemInfo

    if (ThreadPool.isBusy()) {
      busy("Too much connections");
      finish("From greet()");
    }
    addTimeout();
    SystemInfo info = MainHandler.getCurrentInstance().getInfo();
    ourAddress.addAll(info.getAddressList());
    frames.addLast(new BinkpFrame(BinkpCommand.M_NUL, "SYS "
        + info.getStationName()));
    frames.addLast(new BinkpFrame(BinkpCommand.M_NUL, "ZYZ "
        + info.getSysop()));
    frames.addLast(new BinkpFrame(BinkpCommand.M_NUL, "LOC "
        + info.getLocation()));
    frames.addLast(new BinkpFrame(BinkpCommand.M_NUL, "NDL "
        + info.getNDL()));
    frames.addLast(new BinkpFrame(BinkpCommand.M_NUL, "VER "
        + MainHandler.getVersion() + " binkp/1.1"));
    frames.addLast(new BinkpFrame(BinkpCommand.M_NUL, "TIME "
        + format.format(new Date())));
View Full Code Here

Examples of org.ngrinder.monitor.share.domain.SystemInfo

  private void initSigar() {
    if (sigar == null) {
      sigar = new Sigar();
      try {
        netInterfaces = sigar.getNetInterfaceList();
        prev = new SystemInfo();
        prev.setBandWidth(getNetworkUsage());
      } catch (SigarException e) {
        LOGGER.error("Network usage data retrieval failed.", e);
      }
    }
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.