Examples of info()


Examples of org.tmatesoft.svn.core.io.SVNRepository.info()

        SVNURL reposRoot = repos.getRepositoryRoot(true);
        String reposUUID = repos.getRepositoryUUID(true);
        String baseName = SVNPathUtil.tail(url.getPath());

        try {
            rootEntry = repos.info("", revNum[0]);
        } catch (SVNException e) {
            if (e.getErrorMessage() != null &&
                    e.getErrorMessage().getErrorCode() == SVNErrorCode.RA_NOT_IMPLEMENTED) {
                // for svnserve older then 1.2.0
                if (url.equals(reposRoot)) {
View Full Code Here

Examples of org.vertx.java.core.logging.Logger.info()

    @Override
    public void start() {
        final Logger logger = container.logger();
        final Long reaperTimeout = container.config().getLong("userAgentReaperTimeout", 300000);
        logger.info("Started UserAgent Reaper with timeout of [" + reaperTimeout + "]");
        final ConcurrentMap<String, Long> lastAccessedMap = vertx.sharedData().getMap(VertxSimplePushServer.LAST_ACCESSED_MAP);
        final ConcurrentMap<String, String> writeHandlerMap = vertx.sharedData().getMap(VertxSimplePushServer.WRITE_HANDLER_MAP);

        vertx.setPeriodic(reaperTimeout, new Handler<Long>() {
            @Override
View Full Code Here

Examples of org.voltcore.logging.VoltLogger.info()

                        lastUsedTime, currentTime, diffSeconds);
                log.error(msg);
                System.err.println(msg);
                // if the diff is less than some specified amount of time, wait a bit
                if ((lastUsedTime - currentTime) < BACKWARD_TIME_FORGIVENESS_WINDOW_MS) {
                    log.info("This node will delay any stored procedures sent to it.");
                    log.info(String.format("This node will resume full operation in  %.2f seconds.", diffSeconds));

                    long count = BACKWARD_TIME_FORGIVENESS_WINDOW_MS;
                    // note, the loop should stop once lastUsedTime is PASSED, not current
                    while ((currentTime <= lastUsedTime) && (count-- > 0)) {
View Full Code Here

Examples of pt.opensoft.logging.Logger.info()

    if (daemon.hasStartAt()) {
      DateTime startAt = daemon.getStartAt();
      if (daemon.hasPolling()) {
        DateTime polling = daemon.getPolling();
        if (atFixedRate) {
          logger.info("startAt(" + startAt + ", " + polling + ")");
          timer.scheduleAtFixedRate(daemonTask, startAt, daemon.getPeriod());
        } else {
          logger.info("startAt(" + startAt + ", " + polling + ", constantRate)");
          timer.schedule(daemonTask, startAt, daemon.getPeriod());
        }
View Full Code Here

Examples of railo.commons.io.log.LogAndSource.info()

          while ( ( entry = zis.getNextEntry()) != null ) {
            path=entry.getName();
            fileName=fileName(entry);
            // jars
            if(!entry.isDirectory() && (startsWith(path,type,"jars") || startsWith(path,type,"jar") || startsWith(path,type,"lib") || startsWith(path,type,"libs")) && StringUtil.endsWithIgnoreCase(path, ".jar")) {
              log.info("extension","deploy jar "+fileName);
              ConfigWebAdmin.updateJar(config,zis,fileName,false);
              jars.add(fileName);
            }
           
            // flds
View Full Code Here

Examples of railo.runtime.video.VideoExecuter.info()

  public static boolean call(PageContext pc, String path) throws PageException {
    try {
      ConfigWeb config = pc.getConfig();
      VideoExecuter ve = VideoUtilImpl.createVideoExecuter(config);
      ve.info(config,new VideoInputImpl(Caster.toResource(pc,path, true)));
    }
    catch (Exception e) {
     
      if(StringUtil.contains(e.getMessage(),"missing ffmpeg installation"))
        throw Caster.toPageException(e);
View Full Code Here

Examples of redis.clients.jedis.Jedis.info()

    }

    public String info() {
        Jedis jedis = borrow();
        try {
            return jedis.info();
        } finally {
            revert(jedis);
        }
    }
View Full Code Here

Examples of redis.seek.Seek.info()

    public void info() {
        addEntry("MLA98251174", 1287278019);
        addEntry("MLA98251175", 1287278020);
        addEntry("MLA98251176", 1287278021);
        Seek seek = new Seek();
        Info<String, Info<String, Long>> info = seek.info("84689862");

        assertEquals(3, info.total());
        assertNotNull(info.get("category_id"));
        assertEquals(1, info.get("category_id").size());
        assertEquals(3, info.get("category_id").total());
View Full Code Here

Examples of rocket.generator.rebind.GeneratorContext.info()

   * @return A set containing all blacklisted packages.
   */
  protected Set<TypeMatcher> loadBlackLists() {
    final GeneratorContext context = this.getGeneratorContext();
    context.branch();
    context.info("Attempting to load and merge all blacklists (unsorted).");

    final Set<TypeMatcher> blackLists = new HashSet<TypeMatcher>();

    final SubTypesVisitor packageVisitor = new SubTypesVisitor() {

View Full Code Here

Examples of rocket.logging.client.Logger.info()

  protected void info(final String loggerName, final String message, final Throwable throwable) {
    final Logger logger = this.getLogger(loggerName);

    if (null == throwable) {
      logger.info(message);
    } else {
      logger.info(message, throwable);
    }
  }
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.