Searched defs:duration (Results 1 - 25 of 63) sorted by relevance

123

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringTimingStore.java42 * Adds an entry to the timing store, having wrapped the supplied long duration in a
45 * @param duration the length of time the operation took
47 public void addTimingEntry(long duration) { argument
48 durationStore.add(new SessionTimingEntry(duration));
H A DSessionTimingEntry.java23 * This simple implementation simply stores and then provides the duration again.
27 private final long duration; field in class:SessionTimingEntry
30 * Constructor, generating a new SessionTimingEntry with the provided duration
32 * @param duration length of time the operation took (in ms)
34 public SessionTimingEntry(long duration) { argument
35 this.duration = duration;
43 return duration;
H A DSessionMonitoringStore.java94 * @param duration the length of time the new entry represents
97 public void storeRefreshTime(final long duration, final SessionMonitorType type) { argument
106 refreshStore.get(type).addTimingEntry(duration);
115 * @return the average duration (in nanoseconds)
128 * @param duration the length of time the new entry represents
131 public void storeSetPropertyTime(final long duration, final SessionMonitorType type) { argument
140 propertyStore.get(type).addTimingEntry(duration);
149 * @return the average duration (in nanoseconds)
162 * @param duration the length of time the new entry represents
165 public void storeDestroyTime(final long duration, fina argument
200 storeLogoutTime(final long duration, final SessionMonitorType type) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/monitoring/
H A DSessionMonitoringTimingStore.java42 * Adds an entry to the timing store, having wrapped the supplied long duration in a
45 * @param duration the length of time the operation took
47 public void addTimingEntry(long duration) { argument
48 durationStore.add(new SessionTimingEntry(duration));
H A DSessionTimingEntry.java23 * This simple implementation simply stores and then provides the duration again.
27 private final long duration; field in class:SessionTimingEntry
30 * Constructor, generating a new SessionTimingEntry with the provided duration
32 * @param duration length of time the operation took (in ms)
34 public SessionTimingEntry(long duration) { argument
35 this.duration = duration;
43 return duration;
H A DSessionMonitoringStore.java94 * @param duration the length of time the new entry represents
97 public void storeRefreshTime(final long duration, final SessionMonitorType type) { argument
106 refreshStore.get(type).addTimingEntry(duration);
115 * @return the average duration (in nanoseconds)
128 * @param duration the length of time the new entry represents
131 public void storeSetPropertyTime(final long duration, final SessionMonitorType type) { argument
140 propertyStore.get(type).addTimingEntry(duration);
149 * @return the average duration (in nanoseconds)
162 * @param duration the length of time the new entry represents
165 public void storeDestroyTime(final long duration, fina argument
200 storeLogoutTime(final long duration, final SessionMonitorType type) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/entitlement/monitoring/
H A DEvaluationTimingStore.java32 * Records a specific policy evaluation run time instance. If the duration to execute the policy evaluation took
33 * longer than the current slowest recorded duration, we store the information of this evaluation as a
36 * @param duration Length of time (in ms) this evaluation took
42 public void addTiming(long duration, String realm, String applicationName, String resourceName, Subject subject) { argument
43 durationStore.add(new PolicyTimingEntry(duration, realm, applicationName, resourceName, subject));
H A DInternalEvaluationTimingStore.java32 * Adds a new {@link PolicyTimingEntry} to our duration list.
35 * @param duration Length of time (in ms) this evaluation took
41 public void addTiming(String policyName, long duration, String realm, String applicationName, argument
44 durationStore.add(new PolicyTimingEntry(policyName, duration, realm, applicationName, resourceName, subject));
H A DPolicyTimingEntry.java31 private final long duration; field in class:PolicyTimingEntry
40 * @param duration Length of time the evaluation took
46 public PolicyTimingEntry(long duration, String realm, String applicationName, String resourceName, Subject subject) { argument
47 this(null, duration, realm, applicationName, resourceName, subject);
54 * @param duration Length of time the evaluation took
60 public PolicyTimingEntry(String policyName, long duration, String realm, String applicationName, argument
63 this.duration = duration;
85 .append(getPrincipal(subject)).append("; Duration: ").append(duration).append("ms");
103 * Gets the duration o
[all...]
H A DPolicyMonitor.java32 * @param duration Total length of time in ms the evaluation took to complete
39 void addEvaluation(long duration, String realm, String applicationName, String resourceName, Subject subject, argument
47 * @param duration Total length of time in ms the evaluation took to complete
53 void addEvaluation(String policyName, long duration, String realm, argument
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DTimeDuration.java91 * @param duration long primitive.
94 public static String getDurationToString(long duration) { argument
102 long timeInSeconds = duration / 1000;
104 return (duration + "ms");
108 milliseconds = (duration - (timeInSeconds * 1000));
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DTimeDuration.java93 * @param duration long primitive.
96 public static String getDurationToString(long duration) { argument
104 long timeInSeconds = duration / 1000;
106 return (duration + "ms");
110 milliseconds = (duration - (timeInSeconds * 1000));
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/entitlement/monitoring/
H A DEvaluationTimingStore.java32 * Records a specific policy evaluation run time instance. If the duration to execute the policy evaluation took
33 * longer than the current slowest recorded duration, we store the information of this evaluation as a
36 * @param duration Length of time (in ms) this evaluation took
42 public void addTiming(long duration, String realm, String applicationName, String resourceName, Subject subject) { argument
43 durationStore.add(new PolicyTimingEntry(duration, realm, applicationName, resourceName, subject));
H A DInternalEvaluationTimingStore.java32 * Adds a new {@link PolicyTimingEntry} to our duration list.
35 * @param duration Length of time (in ms) this evaluation took
41 public void addTiming(String policyName, long duration, String realm, String applicationName, argument
44 durationStore.add(new PolicyTimingEntry(policyName, duration, realm, applicationName, resourceName, subject));
H A DPolicyTimingEntry.java31 private final long duration; field in class:PolicyTimingEntry
40 * @param duration Length of time the evaluation took
46 public PolicyTimingEntry(long duration, String realm, String applicationName, String resourceName, Subject subject) { argument
47 this(null, duration, realm, applicationName, resourceName, subject);
54 * @param duration Length of time the evaluation took
60 public PolicyTimingEntry(String policyName, long duration, String realm, String applicationName, argument
63 this.duration = duration;
85 .append(getPrincipal(subject)).append("; Duration: ").append(duration).append("ms");
103 * Gets the duration o
[all...]
H A DPolicyMonitor.java32 * @param duration Total length of time in ms the evaluation took to complete
39 void addEvaluation(long duration, String realm, String applicationName, String resourceName, Subject subject, argument
47 * @param duration Total length of time in ms the evaluation took to complete
53 void addEvaluation(String policyName, long duration, String realm, argument
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DDurationUnit.java38 * This enumeration defines various duration units.
95 * duration unit.
100 throw new IllegalArgumentException("Illegal duration unit \"" + s + "\"");
108 * Parse the provided duration string and return its equivalent
109 * duration in milliseconds. The duration string must specify the
110 * unit e.g. "10s". This method will parse duration string
112 * Therefore, a duration can comprise of multiple duration
116 * The duration strin
263 toString(long duration) argument
320 fromMilliSeconds(long duration) argument
368 toMilliSeconds(double duration) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DDurationUnit.java39 * This enumeration defines various duration units.
96 * duration unit.
101 throw new IllegalArgumentException("Illegal duration unit \"" + s + "\"");
109 * Parse the provided duration string and return its equivalent
110 * duration in milliseconds. The duration string must specify the
111 * unit e.g. "10s". This method will parse duration string
113 * Therefore, a duration can comprise of multiple duration
117 * The duration strin
264 toString(long duration) argument
321 fromMilliSeconds(long duration) argument
369 toMilliSeconds(double duration) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DDurationUnit.java39 * This enumeration defines various duration units.
96 * duration unit.
101 throw new IllegalArgumentException("Illegal duration unit \"" + s + "\"");
109 * Parse the provided duration string and return its equivalent
110 * duration in milliseconds. The duration string must specify the
111 * unit e.g. "10s". This method will parse duration string
113 * Therefore, a duration can comprise of multiple duration
117 * The duration strin
264 toString(long duration) argument
321 fromMilliSeconds(long duration) argument
369 toMilliSeconds(double duration) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DDurationUnit.java38 * This enumeration defines various duration units.
95 * duration unit.
100 throw new IllegalArgumentException("Illegal duration unit \"" + s + "\"");
108 * Parse the provided duration string and return its equivalent
109 * duration in milliseconds. The duration string must specify the
110 * unit e.g. "10s". This method will parse duration string
112 * Therefore, a duration can comprise of multiple duration
116 * The duration strin
263 toString(long duration) argument
320 fromMilliSeconds(long duration) argument
368 toMilliSeconds(double duration) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DDurationUnit.java39 * This enumeration defines various duration units.
96 * duration unit.
101 throw new IllegalArgumentException("Illegal duration unit \"" + s + "\"");
109 * Parse the provided duration string and return its equivalent
110 * duration in milliseconds. The duration string must specify the
111 * unit e.g. "10s". This method will parse duration string
113 * Therefore, a duration can comprise of multiple duration
117 * The duration strin
264 toString(long duration) argument
321 fromMilliSeconds(long duration) argument
369 toMilliSeconds(double duration) argument
[all...]
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/
H A DDurationUnit.java35 * This enumeration defines various duration units.
75 * If the provided name did not correspond to a known duration
81 throw new IllegalArgumentException("Illegal duration unit \"" + s + "\"");
87 * Parse the provided duration string and return its equivalent duration in
88 * milliseconds. The duration string must specify the unit e.g. "10s". This
89 * method will parse duration string representations produced from the
90 * {@link #toString(long)} method. Therefore, a duration can comprise of
91 * multiple duration specifiers, for example <code>1d15m25s</code>.
94 * The duration strin
234 toString(long duration) argument
286 fromMilliSeconds(long duration) argument
324 toMilliSeconds(double duration) argument
[all...]
/forgerock/opendj2/ext/ant/lib/
H A Dant-jmf.jar ... Long) java.io.File file int loops Long duration public void addBuildFailedSound (java.io.File, int, java ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-jmf.jar ... Long) java.io.File file int loops Long duration public void addBuildFailedSound (java.io.File, int, java ...
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant-jmf.jar ... Long) java.io.File file int loops Long duration public void addBuildFailedSound (java.io.File, int, java ...

Completed in 34 milliseconds

123