Searched defs:counter (Results 1 - 9 of 9) sorted by relevance

/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/impl/core/
H A DProbeFactory.java58 private static AtomicInteger counter = new AtomicInteger(); field in class:ProbeFactory
66 int id = counter.incrementAndGet();
H A DProviderSubClassImplGenerator.java70 private static AtomicInteger counter = new AtomicInteger(); field in class:ProviderSubClassImplGenerator
79 int id = counter.incrementAndGet();
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/
H A DMonitorTask.java64 private int counter = 0; field in class:MonitorTask
143 if (counter == NUM_ROWS) {
145 counter = 0;
147 counter++;
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/stats/
H A DTimeStatisticImpl.java95 * @param counter The number of times an operation has been invoked since
109 public TimeStatisticImpl(long counter, long maximumTime, long minimumTime, argument
114 count = counter;
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/
H A DPartItem.java114 private static int counter = 0; field in class:PartItem
651 current = counter++;
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/ejb/
H A DCMPHelper.java86 /** This counter is used to populate primary key columns for CMP beans with
87 * an unknown Primary Key Class. It is a single counter per vm and is
90 private static long counter = System.currentTimeMillis(); field in class:CMPHelper
102 /** Increments the counter and returns the value. Used to populate primary
104 * @return the next value for the counter.
108 counter++;
109 return counter;
/glassfish-3.1.2/security/ejb.security/src/main/java/com/sun/enterprise/iiop/security/
H A DSecServerRequestInterceptor.java726 public void setCount(int counter){ argument
727 count = counter;
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DAsyncContextImpl.java550 private final AtomicInteger counter = new AtomicInteger(0); field in class:AsyncContextImpl.AsyncPoolThreadFactory
560 t.setName("glassfish-web-async-thread-" + counter.incrementAndGet());
/glassfish-3.1.2/persistence/cmp/generator-database/src/main/java/com/sun/jdo/spi/persistence/generator/database/
H A DMappingPolicy.java294 * Maximum length of the counter used to create unique names with a
343 * Global counter for creating unique names in each of the namespaces.
344 * <em>Note that a single counter is used across all namespaces.</em>
346 private int counter = 0; field in class:MappingPolicy
687 * Resets the namespaces and counter.
693 counter = 0;
1224 // need to append counter.
1232 counter++;
1233 rc += DatabaseConstants.NAME_SEPARATOR + counter;
1552 + "\ncounter=" + counter // NOI18
[all...]

Completed in 1567 milliseconds