Examples of leave()


Examples of client.net.sf.saxon.ce.lib.TraceListener.leave()

        assert controller != null;
        if (LogConfiguration.loggingIsEnabled() && LogController.traceIsEnabled()) {
          TraceListener listener = LogController.getTraceListener();
        listener.enter(getInstructionInfo(), context);
        child.process(context);
        listener.leave(getInstructionInfo());
       
      } else {
        child.process(context);
      }
        return null;
View Full Code Here

Examples of client.net.sf.saxon.ce.lib.TraceListener.leave()

        info.setSourceLocator(this.getSourceLocator());
        info.setProperty("label", label);
        info.setProperty("value", val);
        TraceListener listener = LogController.getTraceListener();
        listener.enter(info, context);
        listener.leave(info);
    }

    public static void traceItem(/*@Nullable*/ Item val, String label) {
        if (val==null) {
            logger.info(label + ": empty sequence");
View Full Code Here

Examples of com.google.common.util.concurrent.Monitor.leave()

    public void unlock(Object name) {
        Monitor lock;
        synchronized (stringLocks) {
            lock = stringLocks.getUnchecked(name);
        }
        lock.leave();
    }

    public boolean tryLock(Object name) {
        Monitor lock;
        synchronized (stringLocks) {
View Full Code Here

Examples of com.massivecraft.factions.entity.UPlayer.leave()

     
      if (uplayer.getRole() == Rel.LEADER)
      {
        uplayer.getFaction().promoteNewLeader();
      }
      uplayer.leave();
      uplayer.detach();
    }
  }
 
  // -------------------------------------------- //
View Full Code Here

Examples of com.sun.sgs.app.Channel.leave()

    System.err.println("DummyClientSessionListener: leave request, " +
           "channel name: " + channelName +
           ", user: " + name);
    Channel channel =
        (Channel) dataManager.getBinding(channelName);
    channel.leave(session);
    session.send(message.asReadOnlyBuffer());
      } else {
    System.err.println("DummyClientSessionListener: UNKNOWN request, " +
           "action: " +  action +
           ", user: " + name);
View Full Code Here

Examples of com.twitter.common.zookeeper.SingletonService.LeaderControl.leave()

        // resources here.
        try {
          LeaderControl control = leaderControl.get();
          if (control != null) {
            try {
              control.leave();
            } catch (JoinException e) {
              LOG.log(Level.WARNING, "Failed to leave leadership: " + e, e);
            } catch (ServerSet.UpdateException e) {
              LOG.log(Level.WARNING, "Failed to leave server set: " + e, e);
            }
View Full Code Here

Examples of com.vaadin.client.debug.internal.ProfilerSection.Node.leave()

            if (!inEvent && stack.size() >= 2
                    && eventName.equals(stack.get(stack.size() - 2).getName())
                    && !isBeginEvent) {
                // back out of sub event
                stackTop.leave(gwtStatsEvent.getMillis());
                stack.removeLast();
                stackTop = stack.getLast();

                inEvent = true;
            }
View Full Code Here

Examples of com.vaadin.client.debug.internal.ProfilerSection.Node.leave()

                                    + " but is currently in "
                                    + stackTop.getName());
                    return;
                }
                Node previousStackTop = stack.removeLast();
                previousStackTop.leave(gwtStatsEvent.getMillis());
            } else {
                if (!inEvent) {
                    stackTop = stackTop.enterChild(eventName,
                            gwtStatsEvent.getMillis());
                    stack.add(stackTop);
View Full Code Here

Examples of com.valhalla.jbother.groupchat.ChatRoomPanel.leave()

                //if this frame is closed as a result of connection loss and we
                // try to leave
                //the channel, it will not work, so we need to catch it.
    window.removed();
                try {
                    window.leave();
       
                } catch (IllegalStateException e) {
                    com.valhalla.Logger
                            .debug("Caught Illegal State Exception when leaving window: "
                                    + window.toString());
View Full Code Here

Examples of de.danet.an.util.logging.RequestScope.leave()

        RequestScope scope = RequestLog.enterScope
            (this, "processAction", new Object[] { request, response });
        try {
            doProcessAction(request, response);
        } finally {
            scope.leave();
        }
    }
   
    /**
     * Called by the portlet container to allow the portlet to process an
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.