/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/resources/css/am-common/structure/ |
H A D | selectize.less | 20 max-width: 100%;
|
/forgerock/openam/openam-ui/openam-ui-ria/src/main/resources/css/am-common/structure/ |
H A D | selectize.less | 20 max-width: 100%;
|
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ |
H A D | crypto.js | 77 function getRandomUndefinedPosition(array,max) { 79 for (i=0;i<max;i++) { 90 UPPERCASE: function (buffer,max) { 92 buffer[getRandomUndefinedPosition(buffer,max)] = String.fromCharCode(getRandomInt(65,91)); 94 LOWERCASE: function (buffer,max) { 96 buffer[getRandomUndefinedPosition(buffer,max)] = String.fromCharCode(getRandomInt(97,123)); 98 INTEGERS: function (buffer,max) { 99 buffer[getRandomUndefinedPosition(buffer,max)] = (getRandomInt(0,10) + ""); 101 SPECIAL: function (buffer,max) { 103 buffer[getRandomUndefinedPosition(buffer,max)] [all...] |
/forgerock/openam-v13/openam-shared/src/test/java/org/forgerock/openam/utils/collections/ |
H A D | LeastRecentlyUsedTest.java | 36 final int max = 10000; 37 final LeastRecentlyUsed<String, String> cache = new LeastRecentlyUsed<String, String>(max); 38 for (int ii = 0; ii < max * 5; ii++) { 41 assertThat(cache.size()).isEqualTo(max); 55 final int max = 100; 56 final LeastRecentlyUsed<String, Integer> cache = new LeastRecentlyUsed<String, Integer>(max); 58 assertThat(actualMax).isEqualTo(max);
|
/forgerock/openam/openam-shared/src/test/java/org/forgerock/openam/utils/collections/ |
H A D | LeastRecentlyUsedTest.java | 36 final int max = 10000; 37 final LeastRecentlyUsed<String, String> cache = new LeastRecentlyUsed<String, String>(max); 38 for (int ii = 0; ii < max * 5; ii++) { 41 assertThat(cache.size()).isEqualTo(max); 55 final int max = 100; 56 final LeastRecentlyUsed<String, Integer> cache = new LeastRecentlyUsed<String, Integer>(max); 58 assertThat(actualMax).isEqualTo(max);
|
/forgerock/web-agents-v4/zlib/ |
H A D | inftrees.c | 42 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-v13/openam-core/src/main/java/org/forgerock/openam/sm/ |
H A D | ConnectionConfigFactory.java | 98 int max = externalTokenConfig.getMaxConnections(); 99 if (max < 0) { 100 max = smsConfiguration.getMaxConnections(); 102 return max;
|
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/config/ |
H A D | ThreadPoolConfig.java | 41 * @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/openam/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/config/ |
H A D | ThreadPoolConfig.java | 41 * @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/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/util/ |
H A D | ISValidation.java | 142 int max = sourceOffset + (sourceCount - targetCount); 146 while (i <= max && source[i] != first) { 149 if (i > max) {
|
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/dashboard/widgets/ |
H A D | MemoryUsageWidget.js | 127 if(widgetData.max === -1) { 141 percent = Math.round((widgetData.used / widgetData.max) * 100); 149 "memory": widgetData.max - widgetData.used, 183 if(widgetData.max === -1) { 199 percent = Math.round((widgetData.used / widgetData.max) * 100); 207 "memory": widgetData.max - widgetData.used,
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/util/ |
H A D | ISValidation.java | 142 int max = sourceOffset + (sourceCount - targetCount); 146 while (i <= max && source[i] != first) { 149 if (i > max) {
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/ |
H A D | ConnectionConfigFactory.java | 104 int max = externalTokenConfig.getMaxConnections(); 105 if (max < 0) { 106 max = smsConfiguration.getMaxConnections(); 108 return max;
|
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/security/util/ |
H A D | DerInputBuffer.java | 96 int max = this.available(); 97 if (other.available() != max) 99 for (int i = 0; i < max; i++) {
|
/forgerock/openam/openam-shared/src/main/java/com/iplanet/security/util/ |
H A D | DerInputBuffer.java | 96 int max = this.available(); 97 if (other.available() != max) 99 for (int i = 0; i < max; i++) {
|
/forgerock/web-agents-v4/pcre/ |
H A D | pcre_exec.c | 57 #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...] |
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/asn1/ |
H A D | ByteSequenceOutputStream.java | 58 this.maxInternalBufferSize = Math.max(maxInternalBufferSize,
|
/forgerock/opendj2/src/server/org/opends/server/protocols/asn1/ |
H A D | ByteSequenceOutputStream.java | 57 this.maxInternalBufferSize = Math.max(maxInternalBufferSize,
|
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/asn1/ |
H A D | ByteSequenceOutputStream.java | 58 this.maxInternalBufferSize = Math.max(maxInternalBufferSize,
|
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/asn1/ |
H A D | ByteSequenceOutputStream.java | 58 this.maxInternalBufferSize = Math.max(maxInternalBufferSize,
|
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/asn1/ |
H A D | ByteSequenceOutputStream.java | 57 this.maxInternalBufferSize = Math.max(maxInternalBufferSize,
|
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/replication/server/ |
H A D | DbHandlerTest.java | 409 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 D | DbHandlerTest.java | 409 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 D | DbHandlerTest.java | 409 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-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/ |
H A D | UpgradeCTSMaxConnectionsConfigurationStep.java | 59 * 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...] |