Examples of printConfiguration()


Examples of com.google.caliper.options.CaliperOptions.printConfiguration()

          new BridgeModule(),
          new GsonModule(),
          new ConfigModule(),
          new ServiceModule(),
          runnerModule);
      if (options.printConfiguration()) {
        stdout.println("Configuration:");
        ImmutableSortedMap<String, String> sortedProperties =
            ImmutableSortedMap.copyOf(injector.getInstance(CaliperConfig.class).properties());
        for (Entry<String, String> entry : sortedProperties.entrySet()) {
          stdout.printf("  %s = %s%n", entry.getKey(), entry.getValue());
View Full Code Here

Examples of org.apache.uima.ducc.common.NodeConfiguration.printConfiguration()

            logger.error(methodName, null, e);
            logger.error(methodName, null, "Scheduler exits: unable to read configuration.");
            System.exit(1);
    }

        nc.printConfiguration();

        DuccProperties[] nps = nc.getToplevelNodepools();
        Map<String, DuccProperties> cls = nc.getClasses();

        nodepools = new NodePool[nps.length];                   // top-level nodepools
View Full Code Here

Examples of synalp.generation.configuration.GeneratorConfiguration.printConfiguration()

    GeneratorConfigurations allConfigs = GeneratorConfigurations.createConfigurations();
    if (!allConfigs.containsKey(configName))
      throw new ConfigurationException("Error: unable to load configuration '" + configName + "', it is not found in existing configurations (" + allConfigs.keySet() + ")");

    GeneratorConfiguration config = allConfigs.get(configName);
    System.out.println(config.printConfiguration());
    JeniGenerator generator = new JeniGenerator(config);
   
    if (logger.isInfoEnabled())
      logger.info(GeneratorOption.getStatus());
   
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.