Searched defs:threshold (Results 1 - 25 of 49) sorted by relevance

12

/forgerock/openam-v13/openam-schema/openam-diagnostics-schema/src/main/java/com/sun/identity/diagnostic/base/core/jaxbgen/impl/runtime/
H A DIdentityHashSet.java25 * The table is rehashed when its size exceeds this threshold. (The
28 private int threshold; field in class:IdentityHashSet
37 threshold = (int) (initialCapacity * loadFactor);
78 // threshold is not accessed by get method.
79 threshold = (int) (newCapacity * loadFactor);
85 if (count >= threshold)
/forgerock/openam-v13/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/
H A DIdentityHashSet.java25 * The table is rehashed when its size exceeds this threshold. (The
28 private int threshold; field in class:IdentityHashSet
37 threshold = (int) (initialCapacity * loadFactor);
78 // threshold is not accessed by get method.
79 threshold = (int) (newCapacity * loadFactor);
85 if (count >= threshold)
/forgerock/openam-v13/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/
H A DIdentityHashSet.java25 * The table is rehashed when its size exceeds this threshold. (The
28 private int threshold; field in class:IdentityHashSet
37 threshold = (int) (initialCapacity * loadFactor);
78 // threshold is not accessed by get method.
79 threshold = (int) (newCapacity * loadFactor);
85 if (count >= threshold)
/forgerock/openam-v13/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/
H A DIdentityHashSet.java25 * The table is rehashed when its size exceeds this threshold. (The
28 private int threshold; field in class:IdentityHashSet
37 threshold = (int) (initialCapacity * loadFactor);
78 // threshold is not accessed by get method.
79 threshold = (int) (newCapacity * loadFactor);
85 if (count >= threshold)
/forgerock/openam/openam-schema/openam-liberty-schema/src/main/java/com/sun/identity/federation/jaxb/entityconfig/impl/runtime/
H A DIdentityHashSet.java25 * The table is rehashed when its size exceeds this threshold. (The
28 private int threshold; field in class:IdentityHashSet
37 threshold = (int) (initialCapacity * loadFactor);
78 // threshold is not accessed by get method.
79 threshold = (int) (newCapacity * loadFactor);
85 if (count >= threshold)
/forgerock/openam/openam-schema/openam-saml2-schema/src/main/java/com/sun/identity/saml2/jaxb/assertion/impl/runtime/
H A DIdentityHashSet.java25 * The table is rehashed when its size exceeds this threshold. (The
28 private int threshold; field in class:IdentityHashSet
37 threshold = (int) (initialCapacity * loadFactor);
78 // threshold is not accessed by get method.
79 threshold = (int) (newCapacity * loadFactor);
85 if (count >= threshold)
/forgerock/openam/openam-schema/openam-wsfederation-schema/src/main/java/com/sun/identity/wsfederation/jaxb/entityconfig/impl/runtime/
H A DIdentityHashSet.java25 * The table is rehashed when its size exceeds this threshold. (The
28 private int threshold; field in class:IdentityHashSet
37 threshold = (int) (initialCapacity * loadFactor);
78 // threshold is not accessed by get method.
79 threshold = (int) (newCapacity * loadFactor);
85 if (count >= threshold)
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DThreadPool.java47 * threshold value), it will log an error message and ignore the new incoming
48 * tasks until the number of un-executed tasks is less than the threshold value.
56 private int threshold; field in class:ThreadPool
74 * @param threshold
81 public ThreadPool(String name, int poolSize, int threshold, boolean daemon, argument
85 this.threshold = threshold;
87 if (threshold > 0) {
90 this.taskList = new java.util.ArrayList(threshold);
101 + this.poolSize + "\nThreshold = " + threshold);
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DThreadPool.java47 * threshold value), it will log an error message and ignore the new incoming
48 * tasks until the number of un-executed tasks is less than the threshold value.
56 private int threshold; field in class:ThreadPool
74 * @param threshold
81 public ThreadPool(String name, int poolSize, int threshold, boolean daemon, argument
85 this.threshold = threshold;
87 if (threshold > 0) {
90 this.taskList = new java.util.ArrayList(threshold);
101 + this.poolSize + "\nThreshold = " + threshold);
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/util/cli/
H A DMenuBuilder.java341 // The multiple column display threshold.
342 private int threshold = -1; field in class:MenuBuilder
657 * @param threshold
661 public void setMultipleColumnThreshold(int threshold) { argument
662 this.threshold = threshold;
708 if (threshold >= 0 && numericCallbacks.size() >= threshold) {
/forgerock/opendj2/src/server/org/opends/server/util/cli/
H A DMenuBuilder.java340 // The multiple column display threshold.
341 private int threshold = -1; field in class:MenuBuilder
656 * @param threshold
660 public void setMultipleColumnThreshold(int threshold) { argument
661 this.threshold = threshold;
707 if (threshold >= 0 && numericCallbacks.size() >= threshold) {
/forgerock/opendj2.6.2/src/server/org/opends/server/util/cli/
H A DMenuBuilder.java341 // The multiple column display threshold.
342 private int threshold = -1; field in class:MenuBuilder
657 * @param threshold
661 public void setMultipleColumnThreshold(int threshold) { argument
662 this.threshold = threshold;
708 if (threshold >= 0 && numericCallbacks.size() >= threshold) {
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/cli/
H A DMenuBuilder.java341 // The multiple column display threshold.
342 private int threshold = -1; field in class:MenuBuilder
657 * @param threshold
661 public void setMultipleColumnThreshold(int threshold) { argument
662 this.threshold = threshold;
708 if (threshold >= 0 && numericCallbacks.size() >= threshold) {
/forgerock/opendj2-hg/src/server/org/opends/server/util/cli/
H A DMenuBuilder.java340 // The multiple column display threshold.
341 private int threshold = -1; field in class:MenuBuilder
656 * @param threshold
660 public void setMultipleColumnThreshold(int threshold) { argument
661 this.threshold = threshold;
707 if (threshold >= 0 && numericCallbacks.size() >= threshold) {
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCache.java149 * The table is rehashed when its size exceeds this threshold. (The value of
154 private int threshold; field in class:Cache
214 threshold = (int) (initCapacity * loadFactor);
425 threshold = newCapacity;
427 threshold = (int) (newCapacity * loadFactor);
492 if (count >= threshold && count != maxSize) {
493 // Rehash the table if the threshold is exceeded
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/am/util/
H A DCache.java150 * The table is rehashed when its size exceeds this threshold. (The value of
155 private int threshold; field in class:Cache
197 threshold = (int) (capacity * loadFactor);
386 threshold = (int) (newCapacity * loadFactor);
/forgerock/openam/openam-shared/src/main/java/com/iplanet/am/util/
H A DCache.java150 * The table is rehashed when its size exceeds this threshold. (The value of
155 private int threshold; field in class:Cache
197 threshold = (int) (capacity * loadFactor);
386 threshold = (int) (newCapacity * loadFactor);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DCache.java149 * The table is rehashed when its size exceeds this threshold. (The value of
154 private int threshold; field in class:Cache
214 threshold = (int) (initCapacity * loadFactor);
425 threshold = newCapacity;
427 threshold = (int) (newCapacity * loadFactor);
492 if (count >= threshold && count != maxSize) {
493 // Rehash the table if the threshold is exceeded
/forgerock/authenticator-android-v2/app/libs/
H A Dcore-2.3.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/forgerock/openam-v13/openam-oauth/samples/StockClient/lib/
H A Djavaee.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ...
H A Djersey-core-1.1.1-ea-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/jersey/ com/sun/jersey/api/ ...
/forgerock/openam-v13/openam-oauth/samples/StockService/lib/
H A Djavaee.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ...
H A Djersey-core-1.1.1-ea-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/jersey/ com/sun/jersey/api/ ...
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Djaxb1-impl.jarMETA-INF/ META-INF/MANIFEST.MF COPYING.txt META-INF/services/ META-INF/ ...
/forgerock/opendj2-jel-hg/resource/dsml/lib/
H A Djaxb1-impl.jarMETA-INF/ META-INF/MANIFEST.MF COPYING.txt META-INF/services/ META-INF/ ...

Completed in 293 milliseconds

12