Searched refs:max (Results 276 - 300 of 448) sorted by relevance

<<1112131415161718

/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DPasswordPolicyState.java829 highestFailureTime = Math.max(l, highestFailureTime);
901 highestFailureTime = Math.max(l, highestFailureTime);
1131 setFailureLockedTime(currentTime);// FIXME: set to max(failureTimes)?
1719 "current and max reset times.", locked, userDNString);
2433 highestGraceTime = Math.max(l, highestGraceTime);
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DPasswordPolicyState.java880 highestFailureTime = Math.max(l, highestFailureTime);
952 highestFailureTime = Math.max(l, highestFailureTime);
1182 setFailureLockedTime(currentTime);// FIXME: set to max(failureTimes)?
1770 "current and max reset times.", locked, userDNString);
2484 highestGraceTime = Math.max(l, highestGraceTime);
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/util/
H A DUtilities.java885 headerMaxHeight = Math.max(headerMaxHeight, colHeight);
918 colMaxWidth = Math.max(colMaxWidth, colWidth);
946 maxRow = Math.max(maxRow, colHeight);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DEntryIDSet.java398 currentIndex = Math.max(0, Arrays.binarySearch(entryIDSet, begin));
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DPasswordPolicyFactory.java379 long warnInterval = Math.max(0L,
/forgerock/openam-v13/openam-scripting/src/main/js/
H A DdeviceIdMatch-server-side.js284 * "maxPercentageDifference": (Number) The max difference percentage in the values,
286 * "maxDifferences": (Number) The max number of differences in the values,
302 maxNumberOfElements = Math.max(currentValues.length, storedValues.length),
390 * "allowedRange": (Number) The max difference allowed in the two locations, before the penalty is assigned.
/forgerock/openam/openam-scripting/src/main/js/
H A DdeviceIdMatch-server-side.js284 * "maxPercentageDifference": (Number) The max difference percentage in the values,
286 * "maxDifferences": (Number) The max number of differences in the values,
302 maxNumberOfElements = Math.max(currentValues.length, storedValues.length),
390 * "allowedRange": (Number) The max difference allowed in the two locations, before the penalty is assigned.
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractVLVIndexPanel.java295 * Minimum value for max block size.
301 * Maximum value for max block size.
305 * Default value for max block size.
355 lines.add("ds-cfg-max-block-size: "+maxBlockSize.getText().trim());
1292 Math.max(moveUp.getPreferredSize().width,
1294 Math.max(moveUp.getPreferredSize().height,
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractVLVIndexPanel.java294 * Minimum value for max block size.
300 * Maximum value for max block size.
304 * Default value for max block size.
354 lines.add("ds-cfg-max-block-size: "+maxBlockSize.getText().trim());
1291 Math.max(moveUp.getPreferredSize().width,
1293 Math.max(moveUp.getPreferredSize().height,
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractVLVIndexPanel.java295 * Minimum value for max block size.
301 * Maximum value for max block size.
305 * Default value for max block size.
355 lines.add("ds-cfg-max-block-size: "+maxBlockSize.getText().trim());
1292 Math.max(moveUp.getPreferredSize().width,
1294 Math.max(moveUp.getPreferredSize().height,
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractVLVIndexPanel.java294 * Minimum value for max block size.
300 * Maximum value for max block size.
304 * Default value for max block size.
354 lines.add("ds-cfg-max-block-size: "+maxBlockSize.getText().trim());
1291 Math.max(moveUp.getPreferredSize().width,
1293 Math.max(moveUp.getPreferredSize().height,
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractVLVIndexPanel.java295 * Minimum value for max block size.
301 * Maximum value for max block size.
305 * Default value for max block size.
355 lines.add("ds-cfg-max-block-size: "+maxBlockSize.getText().trim());
1292 Math.max(moveUp.getPreferredSize().width,
1294 Math.max(moveUp.getPreferredSize().height,
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DAbstractVLVIndexPanel.java1067 new Dimension(Math.max(moveUp.getPreferredSize().width, moveDown.getPreferredSize().width),
1068 Math.max(moveUp.getPreferredSize().height, moveDown.getPreferredSize().height));
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/
H A Ddragdrop-debug.js3116 var newWidth = Math.max(0, el.offsetWidth - br - bl);
3117 var newHeight = Math.max(0, el.offsetHeight - bt - bb);
H A Ddragdrop-min.js99 var newWidth=Math.max(0,el.offsetWidth-br-bl);var newHeight=Math.max(0,el.offsetHeight-bt-bb);DOM.setStyle(dragEl,"width",newWidth+"px");DOM.setStyle(dragEl,"height",n (…)
H A Ddragdrop.js3012 var newWidth = Math.max(0, el.offsetWidth - br - bl);
3013 var newHeight = Math.max(0, el.offsetHeight - bt - bb);
/forgerock/web-agents-v4/pcre/
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...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/dragdrop/
H A Ddragdrop-debug.js3116 var newWidth = Math.max(0, el.offsetWidth - br - bl);
3117 var newHeight = Math.max(0, el.offsetHeight - bt - bb);
H A Ddragdrop-min.js99 var newWidth=Math.max(0,el.offsetWidth-br-bl);var newHeight=Math.max(0,el.offsetHeight-bt-bb);DOM.setStyle(dragEl,"width",newWidth+"px");DOM.setStyle(dragEl,"height",n (…)
H A Ddragdrop.js3012 var newWidth = Math.max(0, el.offsetWidth - br - bl);
3013 var newHeight = Math.max(0, el.offsetHeight - bt - bb);
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/resources/css/jqueryUI/themes/forgerock/
H A Djquery-ui-1.10.4.custom.css652 .ui-slider-horizontal .ui-slider-range-max {
672 .ui-slider-vertical .ui-slider-range-max {
775 max-width: 300px;
/forgerock/opendj-b2.6/ext/svnkit/
H A Dantlr-runtime.jar ... i int[] X int min int m public static int max (int[]) int i int[] X int max int m public ...
/forgerock/opendj2/ext/svnkit/lib/
H A Dantlr-runtime-3.4.jar ... i int[] X int min int m public static int max (int[]) int i int[] X int max int m public ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dantlr-runtime.jar ... i int[] X int min int m public static int max (int[]) int i int[] X int max int m public ...
/forgerock/opendj2-jel-hg/resource/bin/
H A Didsconfig1060 [+max?Max value.]
2887 [+DESCRIPTION?Ask the user for the max. time allowed to process a search operation and store it into \bINT[DS_TIMELIMIT]]\b.]
2923 [+DESCRIPTION?Ask the user for the max. number of entries to return for a single search operation and store it into \bINT[DS_SIZELIMIT]]\b.]
2949 get_negone_num "Enter max. entries per search the DS returns (current=${NUM})" '1000'
2966 [+DESCRIPTION?Ask the user for the max. time in seconds a client waits for a search result and store it into \bINT[LDAP_SEARCH_TIME_LIMIT]]\b.]
2976 [+DESCRIPTION?Ask the user for the max. time in seconds a client may cache its profile before refreshing again and store it into \bINT[LDAP_PROFILE_TTL]]\b.]
2986 [+DESCRIPTION?Ask the user for the max. time in seconds a client may try to bind to the server and store it into \bINT[LDAP_BIND_LIMIT]]\b.]
3210 get_confirm 'Do you want to modify the DS sizelimit - max. entries to return (y/n/h)?' 'n' 'slim_help'
4067 ds-cfg-db-log-file-max: 10 mb
4071 ds-cfg-db-evictor-max
[all...]

Completed in 268 milliseconds

<<1112131415161718