Examples of end()


Examples of anvil.codec.ExceptionHandler.end()

        _release.compile(context, Node.GET);
        code.pop();
      }
      code.ret(returnto);
      handler.endFinally();
      handler.end();
     
      code.endLocal(_framelocal);
     
    } else {
      if (_init != null) {
View Full Code Here

Examples of anvil.codec.Switch.end()

    code.arraylength();
    Switch select = code.select();
    for(int params=0; params<=realparams; params++) {
      select.addCase(params);
    }
    select.end();

    for(int params=0; params<=realparams; params++) {
      select.bindCase(params);
      if (params < minparams-1) {
        // fall through
View Full Code Here

Examples of ar.com.hjg.pngj.PngWriter.end()

        }
        for (int row = 0; row < rgba.length; row++) {
            ImageLineInt iline = new ImageLineInt(imgInfo, rgba[row]);
            pw.writeRow(iline, row);
        }
        pw.end();

        // Disallow caching on client side
        CacheControl cc = new CacheControl();
        cc.setNoCache(true);
        // Also put the meta-data in the HTML header (easier to read from JS)
View Full Code Here

Examples of atg.dtm.TransactionDemarcation.end()

            );

            assertEquals(artist, retrievedArtist);
        } finally {
            // End the transaction, roll-back to restore original database state
            td.end(true);
        }
    }

}
View Full Code Here

Examples of ch.qos.logback.core.joran.action.Action.end()

    while (i.hasNext()) {
      Action action = (Action) i.next();
      // now let us invoke the end method of the action. We catch and report
      // any eventual exceptions
      try {
        action.end(interpretationContext, tagName);
      } catch (ActionException ae) {
        // at this point endAction, there is no point in skipping children as
        // they have been already processed
        cai.addError("ActionException in Action for tag [" + tagName + "]", ae);
      } catch (RuntimeException e) {
View Full Code Here

Examples of codechicken.core.TaskProfiler.end()

            profiler.start(usagehandler.getRecipeName());
            IUsageHandler handler = usagehandler.getUsageHandler(inputId, ingredients);
            if (handler.numRecipes() > 0)
                handlers.add(handler);
        }
        profiler.end();
        if (handlers.isEmpty())
            return false;

        mc.displayGuiScreen(new GuiUsageRecipe(prevscreen, handlers));
        return true;
View Full Code Here

Examples of com.alibaba.citrus.util.ToStringBuilder.end()

        buf.format("Contribution[toConfigurationPoint=%s, name=%s, type=%s, class=%s]",
                   getConfigurationPoint().getName(), getName(), getType(), implementationClassName).start();

        buf.append(getSchemas());

        return buf.end().toString();
    }
}
View Full Code Here

Examples of com.alibaba.citrus.util.internal.ToStringBuilder.end()

        for (RequestContextFactory<?> factory : factories) {
            buf.format("  %s with features %s, ordering %s\n", factory.getRequestContextInterface().getSimpleName(),
                    asList(factory.getFeatures()), asList(factory.featureOrders()));
        }

        return buf.end().toString();
    }
}
View Full Code Here

Examples of com.alibaba.druid.pool.xa.JtdsXAResource.end()

            Assert.assertNotNull(error);
        }
        {
            Exception error = null;
            try {
                xaResource.end(null, 0);
            } catch (Exception ex) {
                error = ex;
            }
            Assert.assertNotNull(error);
        }
View Full Code Here

Examples of com.alu.e3.common.transaction.ITransaction.end()

    tx.commit();
    assertNotNull (tx.getTransactionId());
    assertNotNull (txMnger.getTransactionContext().getTransactionId());
    assertEquals (txMnger.getTransactionContext().getTransactionId(), tx.getTransactionId());

    tx.end();
    assertNull(tx.getTransactionId());
    assertNull(txMnger.getTransactionContext());

    // create, begin, rollback
    tx = txMnger.getNewTransaction();
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.