Searched refs:count (Results 26 - 50 of 804) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/monitoring/impl/
H A DFedletMonSAML2SvcProvider.java51 public void setFedSessionCount(long count) { argument
60 public void setIdpSessionCount(long count) { argument
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DMultiLineOptions.java41 int count = getResponseOptions().size();
42 for (int i = 0; i < count; i++) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/monitoring/impl/
H A DFedletMonSAML2SvcProvider.java51 public void setFedSessionCount(long count) { argument
60 public void setIdpSessionCount(long count) { argument
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DMultiLineOptions.java41 int count = getResponseOptions().size();
42 for (int i = 0; i < count; i++) {
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/monitoring/
H A DSsoServerIDFFSvcImpl.java71 public void setIdLocalSessToken(long count) { argument
73 IDFFIdLocalSessToken = Long.valueOf(count);
96 public void setUserIDSessionList(long count) { argument
98 IDFFUserIDSessionList = Long.valueOf(count);
114 public void setArtifacts(long count) { argument
116 IDFFArtifacts = Long.valueOf(count);
132 public void setAssertions(long count) { argument
134 IDFFAssertions = Long.valueOf(count);
157 public void setIdDestn(long count) { argument
159 IDFFIdDestn = Long.valueOf(count);
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/monitoring/
H A DSsoServerIDFFSvcImpl.java71 public void setIdLocalSessToken(long count) { argument
73 IDFFIdLocalSessToken = Long.valueOf(count);
96 public void setUserIDSessionList(long count) { argument
98 IDFFUserIDSessionList = Long.valueOf(count);
114 public void setArtifacts(long count) { argument
116 IDFFArtifacts = Long.valueOf(count);
132 public void setAssertions(long count) { argument
134 IDFFAssertions = Long.valueOf(count);
157 public void setIdDestn(long count) { argument
159 IDFFIdDestn = Long.valueOf(count);
[all...]
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java69 for (int count = 0; count < browsers.length && browser == null;
70 count++)
73 { "which", browsers[count] }).waitFor() == 0)
75 browser = browsers[count];
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java70 for (int count = 0; count < browsers.length && browser == null;
71 count++)
74 { "which", browsers[count] }).waitFor() == 0)
76 browser = browsers[count];
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java70 for (int count = 0; count < browsers.length && browser == null;
71 count++)
74 { "which", browsers[count] }).waitFor() == 0)
76 browser = browsers[count];
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java69 for (int count = 0; count < browsers.length && browser == null;
70 count++)
73 { "which", browsers[count] }).waitFor() == 0)
75 browser = browsers[count];
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java70 for (int count = 0; count < browsers.length && browser == null;
71 count++)
74 { "which", browsers[count] }).waitFor() == 0)
76 browser = browsers[count];
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DSAML2SOAPBindingRequestHandler.java43 int count = st.countTokens();
45 if ((count == 2) || (count == 3)) {
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/connections/
H A DConnectionMonitor.java24 * This class maintains a cumulative count and rate for a CTS connections
36 private final AtomicLong count = new AtomicLong(0); field in class:ConnectionMonitor
61 count.incrementAndGet();
66 * Returns the cumulative count of the number of connections made since server startup
68 * @return The cumulative count of connections
71 return count.longValue();
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/operations/
H A DOperationMonitor.java24 * This class maintains a cumulative count and rate for a CTS operation.
36 private final AtomicLong count = new AtomicLong(0); field in class:OperationMonitor
67 * Increments the cumulative count for an operation and recalculates the rate at which the operation
70 * Only synchronizes the count increment, NOT the whole method.
73 count.incrementAndGet();
104 * Returns the cumulative count of an operation, since server start up.
106 * @return The cumulative count for an operation.
109 return count.get();
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/monitoring/
H A DEvaluationMonitoringStore.java25 * This class maintains a cumulative count and rate of Policy evaluations.
35 private final AtomicLong count = new AtomicLong(0); field in class:EvaluationMonitoringStore
60 * Increments the cumulative count of evaluations and recalculates the rate.
63 * Only synchronizes the count increment, NOT the whole method.
66 count.incrementAndGet();
97 * Returns the cumulative count of evaluations, since server start up.
99 * @return The cumulative count of evaluations.
102 return count.get();
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DSAML2SOAPBindingRequestHandler.java43 int count = st.countTokens();
45 if ((count == 2) || (count == 3)) {
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/connections/
H A DConnectionMonitor.java24 * This class maintains a cumulative count and rate for a CTS connections
36 private final AtomicLong count = new AtomicLong(0); field in class:ConnectionMonitor
61 count.incrementAndGet();
66 * Returns the cumulative count of the number of connections made since server startup
68 * @return The cumulative count of connections
71 return count.longValue();
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/operations/
H A DOperationMonitor.java24 * This class maintains a cumulative count and rate for a CTS operation.
36 private final AtomicLong count = new AtomicLong(0); field in class:OperationMonitor
67 * Increments the cumulative count for an operation and recalculates the rate at which the operation
70 * Only synchronizes the count increment, NOT the whole method.
73 count.incrementAndGet();
104 * Returns the cumulative count of an operation, since server start up.
106 * @return The cumulative count for an operation.
109 return count.get();
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/entitlement/monitoring/
H A DEvaluationMonitoringStore.java25 * This class maintains a cumulative count and rate of Policy evaluations.
35 private final AtomicLong count = new AtomicLong(0); field in class:EvaluationMonitoringStore
60 * Increments the cumulative count of evaluations and recalculates the rate.
63 * Only synchronizes the count increment, NOT the whole method.
66 count.incrementAndGet();
97 * Returns the cumulative count of evaluations, since server start up.
99 * @return The cumulative count of evaluations.
102 return count.get();
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/common/navigation/
H A DcreateBreadcrumbs.js88 let count = shiftStartPosition(fragmentPaths, lastFragmentPattern);
95 } else if (fragmentTypes[count] === "INSTANCE" || index === FIRST_CRUMB) {
97 } else if (fragmentTypes[count] === "COLLECTION") {
100 count = count < fragmentTypes.length - 1 ? count + 1 : 0;
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/monitoring/impl/connections/
H A DConnectionsMonitorTest.java49 long count = connectionMonitor.getCumulativeCount();
52 assertEquals(count, 0);
107 long count = connectionMonitor.getCumulativeCount();
110 assertEquals(count, 1);
124 long count = connectionMonitor.getCumulativeCount();
127 assertEquals(count, NUM);
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/monitoring/impl/connections/
H A DConnectionsMonitorTest.java49 long count = connectionMonitor.getCumulativeCount();
52 assertEquals(count, 0);
107 long count = connectionMonitor.getCumulativeCount();
110 assertEquals(count, 1);
124 long count = connectionMonitor.getCumulativeCount();
127 assertEquals(count, NUM);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSearchResults.java66 protected int vlvResponseCount; // Holds the total result count
80 * @param count
89 public AMSearchResults(int count, Set results, int errorCode, Map map) { argument
90 vlvResponseCount = count;
120 * Method which returns the count of the all the results which match the
123 * @return total count of results matching the VLV search. Other wise
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/monitoring/
H A DFedMonSAML2Svc.java67 public void setFedSessionCount(long count); argument
82 public void setIdpSessionCount(long count); argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMSearchResults.java66 protected int vlvResponseCount; // Holds the total result count
80 * @param count
89 public AMSearchResults(int count, Set results, int errorCode, Map map) { argument
90 vlvResponseCount = count;
120 * Method which returns the count of the all the results which match the
123 * @return total count of results matching the VLV search. Other wise

Completed in 178 milliseconds

1234567891011>>