Searched defs:max (Results 1 - 25 of 105) sorted by relevance

12345

/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/replication/server/
H A DDbHandlerTest.java409 private void testDBCount(int max, int counterWindow) throws Exception argument
411 String tn = "testDBCount("+max+","+counterWindow+")";
456 // Populate the db with 'max' msg
458 ChangeNumber cnarray[] = new ChangeNumber[2*(max+1)];
460 for (int i=1; i<=max; i++)
473 assertEquals(cnlast, cnarray[max], "Last change");
530 new ChangeNumber(System.currentTimeMillis() + (2*(max+1)), 100, 1);
537 assertEquals(actualCnt, max, testcase);
542 assertEquals(actualCnt, max, testcase);
559 assertEquals(cnlast, cnarray[max], "Las
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/
H A DDbHandlerTest.java409 private void testDBCount(int max, int counterWindow) throws Exception argument
411 String tn = "testDBCount("+max+","+counterWindow+")";
456 // Populate the db with 'max' msg
458 ChangeNumber cnarray[] = new ChangeNumber[2*(max+1)];
460 for (int i=1; i<=max; i++)
473 assertEquals(cnlast, cnarray[max], "Last change");
530 new ChangeNumber(System.currentTimeMillis() + (2*(max+1)), 100, 1);
537 assertEquals(actualCnt, max, testcase);
542 assertEquals(actualCnt, max, testcase);
559 assertEquals(cnlast, cnarray[max], "Las
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/server/
H A DDbHandlerTest.java409 private void testDBCount(int max, int counterWindow) throws Exception argument
411 String tn = "testDBCount("+max+","+counterWindow+")";
456 // Populate the db with 'max' msg
458 ChangeNumber cnarray[] = new ChangeNumber[2*(max+1)];
460 for (int i=1; i<=max; i++)
473 assertEquals(cnlast, cnarray[max], "Last change");
530 new ChangeNumber(System.currentTimeMillis() + (2*(max+1)), 100, 1);
537 assertEquals(actualCnt, max, testcase);
542 assertEquals(actualCnt, max, testcase);
559 assertEquals(cnlast, cnarray[max], "Las
[all...]
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/config/
H A DThreadPoolConfig.java41 * @param max
42 * - the max number of threads to be used by the thread pool
49 public ThreadPoolConfig(int core, int max, int queueSize, int keepAliveSeconds) { argument
58 if (max < this.coreThreads) {
63 this.maxThreads = max;
/forgerock/web-agents-v4/zlib/
H A Dinftrees.c42 unsigned min, max; /* minimum and maximum code lengths */ local
114 for (max = MAXBITS; max >= 1; max--)
115 if (count[max] != 0) break;
116 if (root > max) root = max;
117 if (max == 0) { /* no symbols to code at all */
126 for (min = 1; min < max; min++)
137 if (left > 0 && (type == CODES || max !
[all...]
/forgerock/openam/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/config/
H A DThreadPoolConfig.java41 * @param max
42 * - the max number of threads to be used by the thread pool
49 public ThreadPoolConfig(int core, int max, int queueSize, int keepAliveSeconds) { argument
58 if (max < this.coreThreads) {
63 this.maxThreads = max;
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/ui/
H A DProgressCircle.java92 public void setMax(int max) { argument
93 this.mMax = max;
/forgerock/opendj-b2.6/tests/staf-tests/shared/java/ldapjdk/
H A DLDIF.java604 * than the given max. A continuation line starts with a single blank space.
607 * @param max the maximum characters allowed in the line
609 public static void breakString( PrintWriter pw, String value, int max) { argument
612 int maxChars = max;
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/file/
H A DFileReplicaDBTest.java270 // at right place. Each record takes 54 bytes, so it means : 108 < max file size < 162 to have
272 // Re-enable this test when max file size is customizable for log
415 private void testGetOldestNewestCSNs(final int max, final int counterWindow) throws Exception argument
417 String tn = "testDBCount("+max+","+counterWindow+")";
433 // Populate the db with 'max' msg
435 CSN csns[] = new CSN[2 * (max + 1)];
437 for (int i=1; i<=max; i++)
443 waitChangesArePersisted(replicaDB, max, counterWindow);
444 assertLimits(replicaDB, csns[1], csns[max]);
453 assertLimits(replicaDB, csns[1], csns[max]);
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/je/
H A DJEReplicaDBTest.java406 private void testGetOldestNewestCSNs(final int max, final int counterWindow) throws Exception argument
408 String tn = "testDBCount("+max+","+counterWindow+")";
425 // Populate the db with 'max' msg
427 CSN csns[] = new CSN[2 * (max + 1)];
429 for (int i=1; i<=max; i++)
437 assertEquals(replicaDB.getNewestCSN(), csns[max], "Wrong newest CSN");
449 assertEquals(replicaDB.getNewestCSN(), csns[max], "Wrong newest CSN");
451 // Populate the db with 'max' msg
452 for (int i=max+1; i<=2 * max;
[all...]
/forgerock/opendj2/tests/staf-tests/shared/java/ldapjdk/
H A DLDIF.java603 * than the given max. A continuation line starts with a single blank space.
606 * @param max the maximum characters allowed in the line
608 public static void breakString( PrintWriter pw, String value, int max) { argument
611 int maxChars = max;
/forgerock/opendj2.6.2/tests/staf-tests/shared/java/ldapjdk/
H A DLDIF.java604 * than the given max. A continuation line starts with a single blank space.
607 * @param max the maximum characters allowed in the line
609 public static void breakString( PrintWriter pw, String value, int max) { argument
612 int maxChars = max;
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/file/
H A DFileReplicaDBTest.java270 // at right place. Each record takes 54 bytes, so it means : 108 < max file size < 162 to have
272 // Re-enable this test when max file size is customizable for log
415 private void testGetOldestNewestCSNs(final int max, final int counterWindow) throws Exception argument
417 String tn = "testDBCount("+max+","+counterWindow+")";
433 // Populate the db with 'max' msg
435 CSN csns[] = new CSN[2 * (max + 1)];
437 for (int i=1; i<=max; i++)
443 waitChangesArePersisted(replicaDB, max, counterWindow);
444 assertLimits(replicaDB, csns[1], csns[max]);
453 assertLimits(replicaDB, csns[1], csns[max]);
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/je/
H A DJEReplicaDBTest.java406 private void testGetOldestNewestCSNs(final int max, final int counterWindow) throws Exception argument
408 String tn = "testDBCount("+max+","+counterWindow+")";
425 // Populate the db with 'max' msg
427 CSN csns[] = new CSN[2 * (max + 1)];
429 for (int i=1; i<=max; i++)
437 assertEquals(replicaDB.getNewestCSN(), csns[max], "Wrong newest CSN");
449 assertEquals(replicaDB.getNewestCSN(), csns[max], "Wrong newest CSN");
451 // Populate the db with 'max' msg
452 for (int i=max+1; i<=2 * max;
[all...]
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/java/ldapjdk/
H A DLDIF.java604 * than the given max. A continuation line starts with a single blank space.
607 * @param max the maximum characters allowed in the line
609 public static void breakString( PrintWriter pw, String value, int max) { argument
612 int maxChars = max;
/forgerock/opendj2-hg/tests/staf-tests/shared/java/ldapjdk/
H A DLDIF.java603 * than the given max. A continuation line starts with a single blank space.
606 * @param max the maximum characters allowed in the line
608 public static void breakString( PrintWriter pw, String value, int max) { argument
611 int maxChars = max;
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeCTSMaxConnectionsConfigurationStep.java59 * If all the servers directory config max connection pool sizes are the same then use that value
62 * <li>Only update the server default CTS max connection setting if the store mode is DEFAULT
63 * and it has no max connection value set</li>
64 * <li>Never update each server instance CTS max connection setting as if its not set then it
68 * <li>Otherwise pick the most used value of the server directory config max connection pool sizes
69 * and set that as the default CTS max connections value and then for each server which has a
70 * different directory config max connection pool size update the CTS max connections value (if not
276 DEBUG.warning("Default server does not have a SMS Directory Config max connection pool size.");
278 + "Config max connectio
339 getConnectionCount(int max, ConnectionType type) argument
[all...]
/forgerock/openidm-v4/openidm-scheduler/src/main/java/org/forgerock/openidm/scheduler/impl/
H A DTaskScannerJob.java135 // Split and prune the result set according to our max and if we're synchronous or not
174 private List<JsonValue> splitResultsOverThreads(JsonValue results, int numberOfThreads, Integer max) { argument
182 if (max != null && i >= max) {
/forgerock/web-agents-v4/pcre/
H A Dpcre_printint.c645 unsigned int min, max; local
787 max = GET2(ccode,1 + IMM2_SIZE);
788 if (max == 0) fprintf(f, "{%u,}", min);
789 else fprintf(f, "{%u,%u}", min, max);
H A Dpcre_dfa_exec.c2627 int max = (int)GET2(ecode, 1 + IMM2_SIZE); local
2633 if (++count >= max && max != 0) /* Max 0 => no limit */
H A Dpcre_exec.c57 #undef max macro
108 /* Min and max values for the common repeats; for the maxima, 0 => infinity */
593 #define max frame->Xmax macro
649 int max;
2748 max = rep_max[c]; /* zero for max => infinity */
2749 if (max == 0) max = INT_MAX;
2756 max = GET2(ecode, 1 + IMM2_SIZE);
2757 if (max
6259 #undef max macro
[all...]
H A Dpcre_compile.c1583 maxp pointer to int for max
1584 returned as -1 if no max
1595 int max = -1; local
1607 if (*p == CHAR_RIGHT_CURLY_BRACKET) max = min; else
1611 max = 0;
1614 max = max * 10 + (int)(*p++ - CHAR_0);
1615 if (max > 65535)
1621 if (max < min)
1630 *maxp = max;
[all...]
H A Dpcre_jit_compile.c945 int min, max, i; local
971 max = 0;
984 max++;
987 if (next[0] == type && next[1] == *begin && max >= 1)
992 for (i = 0; i < max; i++, next_end += 1 + LINK_SIZE)
996 if (i == max)
1001 common->private_data_ptrs[max_end - common->start - LINK_SIZE + 2] = max + 2;
2525 static void peek_char(compiler_common *common, pcre_uint32 max) argument
2534 SLJIT_UNUSED_ARG(max);
2540 if (max < 12
2613 read_char_range(compiler_common *common, pcre_uint32 min, pcre_uint32 max, BOOL update_str_ptr) argument
3528 int i, max, from; local
4737 sljit_uw c, charoffset, max = 256, min = READ_CHAR_MAX; local
6042 int min = 0, max = 0; local
7746 get_iterator_parameters(compiler_common *common, pcre_uchar *cc, pcre_uchar *opcode, pcre_uchar *type, int *max, int *min, pcre_uchar **end) argument
7850 int max = -1, min = -1; local
8546 int max = -1, min = -1; local
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/server/changelog/file/
H A DFileReplicaDBTest.java266 * at right place. Each record takes 54 bytes, so it means : 108 < max file size < 162 to have
268 * Re-enable this test when max file size is customizable for log
404 private void testGetOldestNewestCSNs(final int max, final int counterWindow) throws Exception argument
406 String tn = "testDBCount("+max+","+counterWindow+")";
422 // Populate the db with 'max' msg
424 CSN csns[] = new CSN[2 * (max + 1)];
426 for (int i=1; i<=max; i++)
432 waitChangesArePersisted(replicaDB, max, counterWindow);
433 assertLimits(replicaDB, csns[1], csns[max]);
442 assertLimits(replicaDB, csns[1], csns[max]);
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeCTSMaxConnectionsConfigurationStep.java59 * If all the servers directory config max connection pool sizes are the same then use that value
62 * <li>Only update the server default CTS max connection setting if the store mode is DEFAULT
63 * and it has no max connection value set</li>
64 * <li>Never update each server instance CTS max connection setting as if its not set then it
68 * <li>Otherwise pick the most used value of the server directory config max connection pool sizes
69 * and set that as the default CTS max connections value and then for each server which has a
70 * different directory config max connection pool size update the CTS max connections value (if not
276 DEBUG.warning("Default server does not have a SMS Directory Config max connection pool size.");
278 + "Config max connectio
339 getConnectionCount(int max, ConnectionType type) argument
[all...]

Completed in 103 milliseconds

12345