Searched defs:timestamp (Results 1 - 14 of 14) sorted by relevance

/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/enterprise/transaction/jts/api/
H A DDelegatedTransactionRecoveryFence.java55 * after the specified timestamp
57 public boolean isFenceRaised(String path, String instanceName, long timestamp); argument
71 * Returns instance for which delegated recovery was done before the timestamp specified
74 public String getInstanceRecoveredFor(String path, long timestamp); argument
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DCacheEntry.java75 public long timestamp = -1; field in class:CacheEntry
89 timestamp = -1;
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/
H A DResourceState.java46 private long timestamp; field in class:ResourceState
73 return timestamp;
77 timestamp = System.currentTimeMillis();
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/jws/servedcontent/
H A DDynamicContent.java97 * Returns the timestamp when the instance was created.
108 private final Date timestamp; field in class:DynamicContent.InstanceAdapter
120 timestamp = new Date();
128 return timestamp;
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/enterprise/transaction/jts/recovery/
H A DGMSCallBack.java136 long timestamp = System.currentTimeMillis();
165 doRecovery(logdir, instance, timestamp);
170 logdir = finishDelegatedRecovery(logdir, timestamp);
192 * this path and recorded before specified timestamp, and do delegated recovery if such record exists
194 String finishDelegatedRecovery(String logdir, long timestamp) { argument
196 String instance = fence.getInstanceRecoveredFor(logdir, timestamp);
208 doRecovery(delegatedLogDir, instance, timestamp);
214 private void doRecovery(String logdir, String instance, long timestamp) { argument
227 if (fence.isFenceRaised(logdir, instance, timestamp)) {
H A DRecoveryLockFile.java156 public boolean isFenceRaised(String logDir, String instance, long timestamp) { argument
157 return isRecovering(logDir, instance, timestamp, BY);
170 public void raiseFence(String logPath, String instance, long timestamp) { argument
172 while (isRecovering(logPath, instance, timestamp, BY)) {
195 public String getInstanceRecoveredFor(String path, long timestamp) { argument
196 if (!isRecovering(path, null, timestamp, FOR)) {
220 * that the specified instance started recovery after specified timestamp
223 private boolean isRecovering(String logDir, String instance, long timestamp, String prefix) { argument
246 result = (Long.parseLong(parts[2]) > timestamp);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/logger/
H A DFileLogger.java75 * optional preceding timestamp.
136 private boolean timestamp = false; field in class:FileLogger
221 * Return the timestamp flag.
225 return (timestamp);
231 * Set the timestamp flag.
233 * @param timestamp The new timestamp flag
235 public void setTimestamp(boolean timestamp) { argument
237 boolean oldTimestamp = this.timestamp;
238 this.timestamp
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/logging/
H A DLogAnalyzer.java99 The timestamp obtained from each Map may be used as the timestamp when
105 final long timestamp = ((Long)info.get( TIMESTAMP_KEY )).longValue();<br>
107 Map<String,Number> counts = getErrorDistribution( timestamp );<br>
118 Get the number of log entries for a particular timestamp of a particular {@link Level}
127 @param timestamp a timestamp as obtained using TIME_STAMP_KEY from one of the Maps
134 @Param(name="timestamp") long timestamp,
133 getErrorDistribution( @aramname=�) long timestamp, @Param(name=�) String level) argument
/glassfish-3.1.2/deployment/autodeploy/src/main/java/org/glassfish/deployment/autodeploy/
H A DAutodeployRetryManager.java91 * the file's size and the timestamp of the most recent failure and the timestamp at
509 * file) than the timestamp.
511 * @param timestamp moment to compare to
512 * @return true if the file is newer or contains a newer file than timestamp
514 private boolean isNewerFile(File f, long timestamp) { argument
515 boolean aFileIsNewer = (f.lastModified() > timestamp);
519 if (aFileIsNewer = isNewerFile(containedFile, timestamp)) {
/glassfish-3.1.2/admin/backup/src/main/java/com/sun/enterprise/backup/
H A DBackupRequest.java159 long timestamp; field in class:BackupRequest
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/authenticator/
H A DDigestAuthenticator.java729 private volatile long timestamp; field in class:DigestAuthenticator.NonceInfo
740 timestamp = l;
744 return timestamp;
/glassfish-3.1.2/common/amx-ext-impl/src/main/java/org/glassfish/admin/amx/impl/ext/
H A DLoggingImpl.java507 final Long timestamp = Long.parseLong( info.get( TIMESTAMP_KEY ).toString() );
512 item.put( TIMESTAMP_KEY, timestamp);
535 getErrorDistribution(long timestamp, String level) argument
545 null; //getLogMBean().getErrorDistribution( timestamp, Level.parse( level ) );
/glassfish-3.1.2/registration/registration-impl/src/main/java/com/sun/enterprise/registration/impl/
H A DSvcTag.java91 private Date timestamp; field in class:SvcTag
193 public void setTimestamp(Date timestamp) { argument
194 this.timestamp = timestamp;
368 timestamp = df.parse(XMLUtil.getRequiredTextValue(e, "timestamp"));
438 return (Date) (timestamp.clone());
444 return df.format(timestamp);
486 fmt.format(" <timestamp>%s</timestamp>\
[all...]
/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 546 milliseconds