Searched refs:maxCacheSize (Results 1 - 11 of 11) sorted by relevance

/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/caching/
H A DInMemoryInternalSessionCacheStep.java72 final int maxCacheSize = sessionConfig.getMaxSessionCacheSize();
74 this.cache = new AtomicStampedReference<>(buildCache(maxCacheSize), maxCacheSize);
241 private static Cache<String, InternalSession> buildCache(final int maxCacheSize) { argument
242 if (maxCacheSize <= 0) {
247 .maximumWeight(maxCacheSize)
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DEntryCacheCommon.java368 * @param maxCacheSize maximum allowed cache size, in bytes.
378 Long maxCacheSize,
410 if (maxCacheSize != null)
412 attrs.add(Attributes.create("maxEntryCacheSize", maxCacheSize
374 getGenericMonitorData( Long cacheHits, Long cacheMisses, Long cacheSize, Long maxCacheSize, Long cacheCount, Long maxCacheCount) argument
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DEntryCacheCommon.java367 * @param maxCacheSize maximum allowed cache size, in bytes.
377 Long maxCacheSize,
409 if (maxCacheSize != null)
411 attrs.add(Attributes.create("maxEntryCacheSize", maxCacheSize
373 getGenericMonitorData( Long cacheHits, Long cacheMisses, Long cacheSize, Long maxCacheSize, Long cacheCount, Long maxCacheCount) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DEntryCacheCommon.java368 * @param maxCacheSize maximum allowed cache size, in bytes.
378 Long maxCacheSize,
410 if (maxCacheSize != null)
412 attrs.add(Attributes.create("maxEntryCacheSize", maxCacheSize
374 getGenericMonitorData( Long cacheHits, Long cacheMisses, Long cacheSize, Long maxCacheSize, Long cacheCount, Long maxCacheCount) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DEntryCacheCommon.java368 * @param maxCacheSize maximum allowed cache size, in bytes.
378 Long maxCacheSize,
410 if (maxCacheSize != null)
412 attrs.add(Attributes.create("maxEntryCacheSize", maxCacheSize
374 getGenericMonitorData( Long cacheHits, Long cacheMisses, Long cacheSize, Long maxCacheSize, Long cacheCount, Long maxCacheCount) argument
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DEntryCacheCommon.java367 * @param maxCacheSize maximum allowed cache size, in bytes.
377 Long maxCacheSize,
409 if (maxCacheSize != null)
411 attrs.add(Attributes.create("maxEntryCacheSize", maxCacheSize
373 getGenericMonitorData( Long cacheHits, Long cacheMisses, Long cacheSize, Long maxCacheSize, Long cacheCount, Long maxCacheCount) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DEntryCacheCommon.java367 * @param maxCacheSize maximum allowed cache size, in bytes.
377 Long maxCacheSize,
409 if (maxCacheSize != null)
411 attrs.add(Attributes.create("maxEntryCacheSize", maxCacheSize
373 getGenericMonitorData( Long cacheHits, Long cacheMisses, Long cacheSize, Long maxCacheSize, Long cacheCount, Long maxCacheCount) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/delegation/plugins/
H A DDelegationPolicyImpl.java131 private static int maxCacheSize = DEFAULT_CACHE_SIZE; field in class:DelegationPolicyImpl
153 maxCacheSize = SystemProperties.getAsInt(CONFIGURED_CACHE_SIZE, DEFAULT_CACHE_SIZE);
155 if (maxCacheSize < 0) {
156 maxCacheSize = DEFAULT_CACHE_SIZE;
158 delegationCache = new Cache(maxCacheSize);
160 DelegationManager.debug.message("DelegationPolicyImpl.initialize(): cache size=" + maxCacheSize);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/delegation/plugins/
H A DDelegationPolicyImpl.java134 private static int maxCacheSize = DEFAULT_CACHE_SIZE; field in class:DelegationPolicyImpl
156 maxCacheSize = SystemProperties.getAsInt(CONFIGURED_CACHE_SIZE, DEFAULT_CACHE_SIZE);
158 if (maxCacheSize < 0) {
159 maxCacheSize = DEFAULT_CACHE_SIZE;
161 delegationCache = new Cache(maxCacheSize);
163 DelegationManager.debug.message("DelegationPolicyImpl.initialize(): cache size=" + maxCacheSize);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdCachedServicesImpl.java122 private void resetCache(int maxCacheSize) { argument
123 setMaxSize(maxCacheSize);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/server/
H A DIdCachedServicesImpl.java124 private void resetCache(int maxCacheSize) { argument
125 setMaxSize(maxCacheSize);

Completed in 85 milliseconds