Searched refs:count (Results 201 - 225 of 804) sorted by relevance

1234567891011>>

/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/
H A DDurationUnit.java248 long count = remainder / unit.getDuration();
249 if (count > 0) {
253 builder.append(count);
256 remainder = remainder - (count * unit.getDuration());
/forgerock/openam/openam-core/src/main/java/com/sun/identity/monitoring/
H A DSsoServerSAML2SvcImpl.java101 public void setFedSessionCount(long count) { argument
103 SAML2FedSessionCount = Long.valueOf(count);
119 public void setIdpSessionCount(long count) { argument
121 SAML2IDPSessionCount = Long.valueOf(count);
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DUserResponseHandler.java49 int count = allKeys.size();
50 for (int i = 0; i < count; i++) {
/forgerock/openam/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DExtendedExecutorServiceFactory.java94 private final AtomicInteger count = new AtomicInteger(0); field in class:ExtendedExecutorServiceFactory.NamedThreadFactory
102 return new Thread(r, name + "-" + count.getAndIncrement());
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/configurator/
H A DUserResponseHandler.java49 int count = allKeys.size();
50 for (int i = 0; i < count; i++) {
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/
H A DProtocolWindowTest.java150 int count = WINDOW_SIZE * 2 + REPLICATION_QUEUE_SIZE;
151 processModify(count);
174 assertEquals(rcvCount, count);
279 private void processModify(int count) argument
281 while (count>0)
283 count--;
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/
H A DProtocolWindowTest.java150 int count = WINDOW_SIZE * 2 + REPLICATION_QUEUE_SIZE;
151 processModify(count);
174 assertEquals(rcvCount, count);
279 private void processModify(int count) argument
281 while (count>0)
283 count--;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DProxyRestrictionImpl.java58 private int count; field in class:ProxyRestrictionImpl
139 + "count is not an integer " + attrValue);
179 * @return the count number
182 return count;
190 * @param value the count number
198 if (count < 0) {
200 "AudienceRestrictionImpl.setCount(): count is negative");
204 count = value;
255 if (count >= 0) {
257 append(count)
[all...]
/forgerock/authenticator-ios-v2/unit-tests/
H A DFRANotificationHandlerTest.m110 XCTAssertEqual([pushMechanism notifications].count, 1, @"Notification handling should be idempotent");
121 XCTAssertEqual([oathMechanism notifications].count, 0, @"Only Push-Mechanism notifications should be handled");
122 XCTAssertEqual([pushMechanism notifications].count, 1, @"Only Push-Mechanism notifications should be handled");
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/
H A DProtocolWindowTest.java154 int count = WINDOW_SIZE * 2 + REPLICATION_QUEUE_SIZE;
155 processModify(count);
178 assertEquals(rcvCount, count);
280 private void processModify(int count) argument
282 while (count>0)
284 count--;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DProxyRestrictionImpl.java58 private int count; field in class:ProxyRestrictionImpl
139 + "count is not an integer " + attrValue);
179 * @return the count number
182 return count;
190 * @param value the count number
198 if (count < 0) {
200 "AudienceRestrictionImpl.setCount(): count is negative");
204 count = value;
255 if (count >= 0) {
257 append(count)
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/xml/
H A DXMLDocument.java479 + startIndex + ", delete count: " + deleteCount);
783 int count = 0;
784 while (count < tokenList.size()) {
792 Token firstToken = (Token) tokenList.get(count);
807 count++;
809 if (tokenList.size() > count + 1) {
810 Token secondToken = (Token) tokenList.get(count + 1);
827 count = count + 2;
839 if (element == null && tokenList.size() >= count
[all...]
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/xml/
H A DXMLDocument.java479 + startIndex + ", delete count: " + deleteCount);
783 int count = 0;
784 while (count < tokenList.size()) {
792 Token firstToken = (Token) tokenList.get(count);
807 count++;
809 if (tokenList.size() > count + 1) {
810 Token secondToken = (Token) tokenList.get(count + 1);
827 count = count + 2;
839 if (element == null && tokenList.size() >= count
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/am/util/
H A DCache.java147 private transient int count; field in class:Cache
235 return count;
245 return count == 0;
443 if (count == maxSize) { // Table is full need to replace an entry with
455 count++;
508 count--;
543 count = 0;
579 if (ltl != count) {
580 retStr = "LRU list length (" + ltl + ") != count (" + count
[all...]
/forgerock/openam/openam-shared/src/main/java/com/iplanet/am/util/
H A DCache.java147 private transient int count; field in class:Cache
235 return count;
245 return count == 0;
443 if (count == maxSize) { // Table is full need to replace an entry with
455 count++;
508 count--;
543 count = 0;
579 if (ltl != count) {
580 retStr = "LRU list length (" + ltl + ") != count (" + count
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DDraftCNDbHandler.java172 public long count() method in class:DraftCNDbHandler
174 return db.count();
331 if (this.count() == 0)
462 attributes.add(Attributes.create("count",
463 Long.toString(count())));
569 " count=" + db.count() +
602 " count=" + db.count() +
635 " count
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/file/
H A DFileChangeNumberIndexDBTest.java97 assertEquals(cnIndexDB.count(), 3, "Db count");
131 assertEquals(cnIndexDB.count(), 0);
202 int count = 0;
203 while (cnIndexDB.count() > 1 && count < 100)
206 count++;
259 assertEquals(cnIndexDB.count(), 1);
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DDraftCNDbHandler.java181 public long count() method in class:DraftCNDbHandler
183 return db.count();
340 if (this.count() == 0)
483 attributes.add(Attributes.create("count",
484 Long.toString(count())));
590 " count=" + db.count() +
623 " count=" + db.count() +
656 " count
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/file/
H A DFileChangeNumberIndexDBTest.java97 assertEquals(cnIndexDB.count(), 3, "Db count");
131 assertEquals(cnIndexDB.count(), 0);
202 int count = 0;
203 while (cnIndexDB.count() > 1 && count < 100)
206 count++;
259 assertEquals(cnIndexDB.count(), 1);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/server/
H A DDraftCNDbHandler.java172 public long count() method in class:DraftCNDbHandler
174 return db.count();
331 if (this.count() == 0)
462 attributes.add(Attributes.create("count",
463 Long.toString(count())));
569 " count=" + db.count() +
602 " count=" + db.count() +
635 " count
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DISResourceBundle.java100 int count = 0;
107 rbArray[count][0] = convertUnicode(key);
108 rbArray[count][1] = convertUnicode(value);
109 count++;
291 int count = tzer.countTokens();
293 if (count <= 2 && count > 0) {
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/server/changelog/file/
H A DFileChangeNumberIndexDBTest.java97 assertEquals(cnIndexDB.count(), 3, "Db count");
135 assertEquals(cnIndexDB.count(), 0);
178 int count = 0;
179 while (cnIndexDB.count() > 1 && count < 100)
182 count++;
229 assertEquals(cnIndexDB.count(), 1);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DISResourceBundle.java100 int count = 0;
107 rbArray[count][0] = convertUnicode(key);
108 rbArray[count][1] = convertUnicode(value);
109 count++;
291 int count = tzer.countTokens();
293 if (count <= 2 && count > 0) {
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DBackendStat.java220 final long count; field in class:BackendStat.TreeStats
224 TreeStats(long count, long tks, long tds) argument
226 this.count = count;
818 builder.appendCell(treeStats.count);
855 int count = 0;
869 count = appendTreeRows(builder, ec);
877 count += appendTreeRows(builder, ec);
882 out.format(INFO_LABEL_BACKEND_TOOL_TOTAL.get(count).toString());
945 int count
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/plugins/profiler/
H A DProfileViewer.java253 long count = reader.readInteger();
282 stackMap.put(stack, count);
284 existingFrame.updateLineNumberCount(lineNumbers[pos], count);
287 existingFrame.recurseSubFrames(stack, pos-1, count, stacksByMethod);
498 * Formats the provided count, padding with leading spaces as necessary.
500 * @param count The count value to be formatted.
503 * @return The formatted count string.
505 private String formatCount(long count, int length) argument
509 buffer.append(count);
[all...]

Completed in 418 milliseconds

1234567891011>>