Searched refs:maxEntries (Results 1 - 22 of 22) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringTimingStore.java35 * @param maxEntries the maximum number of samples to consider when performing oeprations on the store
37 public SessionMonitoringTimingStore(int maxEntries) { argument
38 super(maxEntries);
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/shared/monitoring/
H A DAbstractTimingStore.java34 protected final int maxEntries; field in class:AbstractTimingStore
39 * @param maxEntries The maximum number of entries.
41 public AbstractTimingStore(int maxEntries) { argument
42 if (maxEntries < 100) {
43 this.maxEntries = 100;
45 this.maxEntries = maxEntries;
56 while (size() >= maxEntries) {
147 return maxEntries;
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/monitoring/
H A DAbstractTimingStore.java34 protected final int maxEntries; field in class:AbstractTimingStore
39 * @param maxEntries The maximum number of entries.
41 public AbstractTimingStore(int maxEntries) { argument
42 if (maxEntries < 100) {
43 this.maxEntries = 100;
45 this.maxEntries = maxEntries;
56 while (size() >= maxEntries) {
147 return maxEntries;
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringTimingStore.java35 * @param maxEntries the maximum number of samples to consider when performing oeprations on the store
37 public SessionMonitoringTimingStore(int maxEntries) { argument
38 super(maxEntries);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DBackendMonitor.java88 private int maxEntries = 1024; field in class:BackendMonitor
284 * @param maxEntries The maximum number of search filters statistics
287 void setMaxEntries(int maxEntries) argument
289 this.maxEntries = maxEntries;
312 while (!filterToStats.isEmpty() && filterToStats.size() > maxEntries)
H A DOnDiskMergeImporter.java3674 LRUPresenceCache(final int maxEntries) argument
3677 this.cache = Collections.synchronizedMap(new LinkedHashMap<T, Object>(maxEntries + 1, 1.0f, true)
3682 return size() >= maxEntries;
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DFIFOEntryCache.java125 private long maxEntries; field in class:FIFOEntryCache
411 if ((maxEntries > 0) && (entryCount > maxEntries))
414 while (iterator.hasNext() && (entryCount > maxEntries))
530 if ((maxEntries > 0) && (entryCount > maxEntries))
533 while (iterator.hasNext() && (entryCount > maxEntries))
1032 maxEntries = newMaxEntries;
1062 (((maxEntries != Integer.MAX_VALUE) &&
1063 (maxEntries !
[all...]
H A DFileSystemEntryCache.java133 private AtomicLong maxEntries; field in class:FileSystemEntryCache
353 // Push maxEntries and make it unlimited til restoration complete.
354 AtomicLong currentMaxEntries = maxEntries;
355 maxEntries.set(DEFAULT_FSCACHE_MAX_ENTRIES);
376 maxEntries = currentMaxEntries;
1043 // to the maximum possible value we can cap maxEntries to.
1257 maxEntries = new AtomicLong(newMaxEntries);
1292 (((maxEntries.longValue() != Integer.MAX_VALUE) &&
1293 (maxEntries.longValue() != Long.MAX_VALUE)) ?
1294 new Long(maxEntries
[all...]
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DFIFOEntryCache.java124 private long maxEntries; field in class:FIFOEntryCache
410 if ((maxEntries > 0) && (entryCount > maxEntries))
413 while (iterator.hasNext() && (entryCount > maxEntries))
529 if ((maxEntries > 0) && (entryCount > maxEntries))
532 while (iterator.hasNext() && (entryCount > maxEntries))
1031 maxEntries = newMaxEntries;
1061 (((maxEntries != Integer.MAX_VALUE) &&
1062 (maxEntries !
[all...]
H A DFileSystemEntryCache.java132 private AtomicLong maxEntries; field in class:FileSystemEntryCache
352 // Push maxEntries and make it unlimited til restoration complete.
353 AtomicLong currentMaxEntries = maxEntries;
354 maxEntries.set(DEFAULT_FSCACHE_MAX_ENTRIES);
375 maxEntries = currentMaxEntries;
1042 // to the maximum possible value we can cap maxEntries to.
1256 maxEntries = new AtomicLong(newMaxEntries);
1291 (((maxEntries.longValue() != Integer.MAX_VALUE) &&
1292 (maxEntries.longValue() != Long.MAX_VALUE)) ?
1293 new Long(maxEntries
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DFIFOEntryCache.java125 private long maxEntries; field in class:FIFOEntryCache
411 if ((maxEntries > 0) && (entryCount > maxEntries))
414 while (iterator.hasNext() && (entryCount > maxEntries))
530 if ((maxEntries > 0) && (entryCount > maxEntries))
533 while (iterator.hasNext() && (entryCount > maxEntries))
1032 maxEntries = newMaxEntries;
1062 (((maxEntries != Integer.MAX_VALUE) &&
1063 (maxEntries !
[all...]
H A DFileSystemEntryCache.java133 private AtomicLong maxEntries; field in class:FileSystemEntryCache
353 // Push maxEntries and make it unlimited til restoration complete.
354 AtomicLong currentMaxEntries = maxEntries;
355 maxEntries.set(DEFAULT_FSCACHE_MAX_ENTRIES);
376 maxEntries = currentMaxEntries;
1043 // to the maximum possible value we can cap maxEntries to.
1257 maxEntries = new AtomicLong(newMaxEntries);
1292 (((maxEntries.longValue() != Integer.MAX_VALUE) &&
1293 (maxEntries.longValue() != Long.MAX_VALUE)) ?
1294 new Long(maxEntries
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DFIFOEntryCache.java125 private long maxEntries; field in class:FIFOEntryCache
411 if ((maxEntries > 0) && (entryCount > maxEntries))
414 while (iterator.hasNext() && (entryCount > maxEntries))
530 if ((maxEntries > 0) && (entryCount > maxEntries))
533 while (iterator.hasNext() && (entryCount > maxEntries))
1032 maxEntries = newMaxEntries;
1062 (((maxEntries != Integer.MAX_VALUE) &&
1063 (maxEntries !
[all...]
H A DFileSystemEntryCache.java133 private AtomicLong maxEntries; field in class:FileSystemEntryCache
353 // Push maxEntries and make it unlimited til restoration complete.
354 AtomicLong currentMaxEntries = maxEntries;
355 maxEntries.set(DEFAULT_FSCACHE_MAX_ENTRIES);
376 maxEntries = currentMaxEntries;
1043 // to the maximum possible value we can cap maxEntries to.
1257 maxEntries = new AtomicLong(newMaxEntries);
1292 (((maxEntries.longValue() != Integer.MAX_VALUE) &&
1293 (maxEntries.longValue() != Long.MAX_VALUE)) ?
1294 new Long(maxEntries
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DFIFOEntryCache.java124 private long maxEntries; field in class:FIFOEntryCache
410 if ((maxEntries > 0) && (entryCount > maxEntries))
413 while (iterator.hasNext() && (entryCount > maxEntries))
529 if ((maxEntries > 0) && (entryCount > maxEntries))
532 while (iterator.hasNext() && (entryCount > maxEntries))
1031 maxEntries = newMaxEntries;
1061 (((maxEntries != Integer.MAX_VALUE) &&
1062 (maxEntries !
[all...]
H A DFileSystemEntryCache.java132 private AtomicLong maxEntries; field in class:FileSystemEntryCache
352 // Push maxEntries and make it unlimited til restoration complete.
353 AtomicLong currentMaxEntries = maxEntries;
354 maxEntries.set(DEFAULT_FSCACHE_MAX_ENTRIES);
375 maxEntries = currentMaxEntries;
1042 // to the maximum possible value we can cap maxEntries to.
1256 maxEntries = new AtomicLong(newMaxEntries);
1291 (((maxEntries.longValue() != Integer.MAX_VALUE) &&
1292 (maxEntries.longValue() != Long.MAX_VALUE)) ?
1293 new Long(maxEntries
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DFIFOEntryCache.java114 private long maxEntries; field in class:FIFOEntryCache
344 if (maxEntries > 0 && entryCount > maxEntries)
347 while (iterator.hasNext() && entryCount > maxEntries)
453 if (maxEntries > 0 && entryCount > maxEntries)
456 while (iterator.hasNext() && entryCount > maxEntries)
895 maxEntries = newMaxEntries;
920 (maxEntries != Integer.MAX_VALUE && maxEntries !
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/monitors/
H A DDatabaseEnvironmentMonitor.java114 private int maxEntries = 1024; field in class:DatabaseEnvironmentMonitor
406 * @param maxEntries The maximum number of search filters statistics
409 public void setMaxEntries(int maxEntries) { argument
410 this.maxEntries = maxEntries;
431 while(!filterToStats.isEmpty() && filterToStats.size() > maxEntries)
/forgerock/opendj2/src/server/org/opends/server/monitors/
H A DDatabaseEnvironmentMonitor.java113 private int maxEntries = 1024; field in class:DatabaseEnvironmentMonitor
411 * @param maxEntries The maximum number of search filters statistics
414 public void setMaxEntries(int maxEntries) { argument
415 this.maxEntries = maxEntries;
436 while(!filterToStats.isEmpty() && filterToStats.size() > maxEntries)
/forgerock/opendj2.6.2/src/server/org/opends/server/monitors/
H A DDatabaseEnvironmentMonitor.java114 private int maxEntries = 1024; field in class:DatabaseEnvironmentMonitor
406 * @param maxEntries The maximum number of search filters statistics
409 public void setMaxEntries(int maxEntries) { argument
410 this.maxEntries = maxEntries;
431 while(!filterToStats.isEmpty() && filterToStats.size() > maxEntries)
/forgerock/opendj2-jel-hg/src/server/org/opends/server/monitors/
H A DDatabaseEnvironmentMonitor.java114 private int maxEntries = 1024; field in class:DatabaseEnvironmentMonitor
406 * @param maxEntries The maximum number of search filters statistics
409 public void setMaxEntries(int maxEntries) { argument
410 this.maxEntries = maxEntries;
431 while(!filterToStats.isEmpty() && filterToStats.size() > maxEntries)
/forgerock/opendj2-hg/src/server/org/opends/server/monitors/
H A DDatabaseEnvironmentMonitor.java113 private int maxEntries = 1024; field in class:DatabaseEnvironmentMonitor
411 * @param maxEntries The maximum number of search filters statistics
414 public void setMaxEntries(int maxEntries) { argument
415 this.maxEntries = maxEntries;
436 while(!filterToStats.isEmpty() && filterToStats.size() > maxEntries)

Completed in 180 milliseconds