Searched refs:ts (Results 1 - 20 of 20) sorted by relevance

/glassfish-3.1.2/common/glassfish-ee-api/src/main/java/com/sun/appserv/connectors/spi/
H A DConfigurableTransactionSupport.java49 public void setTransactionSupport(com.sun.appserv.connectors.spi.TransactionSupport ts); argument
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/startup/
H A DSingletonLifeCycleManager.java436 SingletonLifeCycleManager ts = new SingletonLifeCycleManager(false);
437 ts.addDependency("A", "B, C");
438 ts.addDependency("B", "C, D");
439 ts.addDependency("D", "E");
440 ts.addDependency("C", "D, E, G");
441 ts.addDependency("E", "D");
443 ts.getPartialOrdering();
446 t.addDependency("C", ts.computeDependencies("C"));
447 t.addDependency("D", ts.computeDependencies("D"));
463 SingletonLifeCycleManager ts
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/upgrade/
H A DEJBTimerServiceUpgrade.java83 private void doUpgrade(EjbTimerService ts) { argument
84 String value = ts.getMinimumDeliveryIntervalInMillis();
89 List<Property> properties = ts.getProperty();
101 public Object run(EjbTimerService ts) throws PropertyVetoException, TransactionFailure {
102 Property prop = ts.createChild(Property.class);
103 ts.getProperty().add(prop);
106 ts.setMinimumDeliveryIntervalInMillis(minDelivery);
109 }, ts);
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/ext/wsmgmt/
H A DWebServiceRuntimeTest.java75 long ts = wsp.getLastResetTime();
77 System.out.println("Last reset time is " + ts);
87 if ((ts == 0) && (ts2 == 0)) {
90 assert (ts != ts2);
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/util/
H A DStatisticToString.java110 final TimeStatistic ts = (TimeStatistic)stc;
111 return ( s.append(ts.getMaxTime()).append(SEP).append(ts.getMinTime()).append(SEP).append(ts.getTotalTime()).toString() );
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DTargetServerHelper.java140 for (TargetServer ts : endpoints) {
150 if (isGlobalSSL && ts.getSecurity() == null) {
152 ts.setSecurity(sec);
H A DAppClientContainerBuilder.java222 for (TargetServer ts : targetServers) {
226 sb.append(ts.getAddress()).append(":").append(ts.getPort());
280 for (TargetServer ts : targetServers) {
286 if (ts.getSecurity() != null) {
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEJBTimerService.java542 TimerSchedule ts = timer.getTimerSchedule();
543 if (ts != null && ts.isAutomatic()) {
548 container.addSchedule(timerId, ts);
627 TimerSchedule ts = timer.getTimerSchedule();
655 ((ts != null && ts.getNextTimeout(lastExpiration).getTimeInMillis()
657 || ((ts == null) && now.getTime() - lastExpiration.getTime()
1025 TimerSchedule ts = timerState.getTimerSchedule();
1026 if (ts !
2285 getNextScheduledTimeout(TimerSchedule ts) argument
[all...]
H A DRuntimeTimerState.java406 TimerSchedule ts = getTimerSchedule();
407 if( ts != null ) {
408 buffer.append("'" + ts.getScheduleAsString() + "' ");
H A DTimerSchedule.java414 TimerSchedule ts = new TimerSchedule(s, null, 0);
415 ts.getNextTimeout();
H A DBaseContainer.java2176 protected void addSchedule(TimerPrimaryKey timerId, TimerSchedule ts) { argument
2178 if (m.getName().equals(ts.getTimerMethodName()) &&
2179 m.getParameterTypes().length == ts.getMethodParamCount()) {
2183 ts.getScheduleAsString() + " FOR method: " + m);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/logger/
H A DFileLogger.java259 Timestamp ts = new Timestamp(System.currentTimeMillis());
260 String tsString = ts.toString().substring(0, 19);
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/
H A DResultDesc.java332 //Variable ts is introduced to avoid cast
333 Timestamp ts;
334 ts = resultData.getTimestamp(index);
335 if (resultType == FieldTypeEnumeration.UTIL_DATE && ts != null) {
336 retVal = new Date(ts.getTime());
338 retVal = ts;
/glassfish-3.1.2/transaction/jta/src/main/java/com/sun/enterprise/transaction/
H A DTransactionServiceConfigListener.java77 @Inject private TransactionService ts; field in class:TransactionServiceConfigListener
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/util/
H A DConnectionPoolObjectsUtils.java292 public static TransactionSupport getTransactionSupport(int ts) { argument
293 switch (ts) {
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DDefaultConfigUpgrade.java1382 TransactionService ts = config.createChild(TransactionService.class);
1383 config.setTransactionService(ts);
1388 ts.setTxLogDir(val);
1391 ts.setAutomaticRecovery(val);
1941 Transports ts = nc.createChild(Transports.class);
1942 nc.setTransports(ts);
1943 createTransport(ts);
1958 private void createTransport(Transports ts) throws PropertyVetoException { argument
1962 if (parser.getLocalName().equals("transport") && ts != null) {
1963 Transport t = ts
2013 createThreadPool(ThreadPools ts) argument
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/
H A DActiveResourceAdapterImpl.java345 TransactionSupport ts = ConnectionPoolObjectsUtils.getTransactionSupport(
347 ((ConfigurableTransactionSupport)mcf).setTransactionSupport(ts);
/glassfish-3.1.2/transaction/jts/src/test/java/com/sun/enterprise/transaction/jts/
H A DAppTest.java854 TransactionSynchronizationRegistry ts = new TransactionSynchronizationRegistryImpl(t);
855 ts.registerInterposedSynchronization(s);
914 TransactionSynchronizationRegistry ts = new TransactionSynchronizationRegistryImpl(t);
915 ts.registerInterposedSynchronization(s);
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Djava_md.unix.c409 struct timespec ts; local
410 ts.tv_sec = 0;
411 ts.tv_nsec = 100000000;
426 nanosleep(&ts, NULL);
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/
H A Djdbc40.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ...

Completed in 383 milliseconds