Searched refs:max (Results 26 - 50 of 448) sorted by relevance

1234567891011>>

/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...]
/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-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/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/audit/
H A DautoPurgeAuditRecon.js69 var result, i, max, idList = [], idMap = {}, key;
89 max = (idMap[key].length < numOfRecons) ? idMap[key].length : numOfRecons;
90 for (i = 0; i < max; i++){
/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-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/queue/config/
H A DCTSQueueConfiguration.java90 int max = dataLayerConfig.getConfig(ConnectionType.CTS_ASYNC).getMaxConnections();
91 return findPowerOfTwo(max - 1);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/impl/queue/config/
H A DCTSQueueConfiguration.java90 int max = dataLayerConfig.getConfig(ConnectionType.CTS_ASYNC).getMaxConnections();
91 return findPowerOfTwo(max - 1);
/forgerock/opendj2/src/server/org/opends/server/api/
H A DWorkQueue.java168 int value = Math.max(24, cpus * 2);
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DWorkQueue.java169 int value = Math.max(24, cpus * 2);
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DWorkQueue.java169 int value = Math.max(24, cpus * 2);
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DWorkQueue.java168 int value = Math.max(24, cpus * 2);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DWorkQueue.java169 int value = Math.max(24, cpus * 2);
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/
H A Dpolicy.js42 "policyId" : "max-attempts-triggers-lock-cooldown",
204 if (value > params.max &&
206 failures = [{"policyRequirement": "NO_MORE_THAN_X_ATTEMPTS_WITHIN_Y_MINUTES", params: {"max":params.max,"numMinutes":params.numMinutes}}];
/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-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/openam-v13/openam-ui/openam-ui-ria/src/main/js/libs/
H A Dbackgrid-paginator-0.3.5-custom.min.js8 !function(a,b){"object"==typeof exports&&(module.exports=b(require("underscore"),require("backbone"),require("backgrid"),require("backbone.paginator"))),"function"==typeof define&&define.amd?define(["underscore","backbone","backgrid","backbone.paginator"],b):b(a._,a.Backbone,a.Backgrid)}(this,function(a,b,c){"use strict";var d=c.Extension.PageHandle=b.View.extend({tagName:"li",events:{"click a":"changePage"},title:function(a){return"Page "+a.label},isRewind:!1,isBack:!1,isForward:!1,isFastForward:!1,initialize:function(b){var c=this.collection,d=c.state,e=d.currentPage,f=d.firstPage,g=d.lastPage;a.extend(this,a.pick(b,["isRewind","isBack","isForward","isFastForward"]));var h;this.isRewind?h=f:this.isBack?h=Math.max(f,e-1):this.isForward?h=Math.min(g,e+1):this.isFastForward?h=g:(h=+b.pageIndex,h=f?h+1:h),this.pageIndex=h,this.label=(b.label||(f?h:h+1))+"";var i=b.title||this.title;this.title=a.isFunction(i)?i({label:this.label}):i},render:function(){this.$el.empty();var a=document.createElement("a");a.href="#",this.title&&(a.title=this.title),a.innerHTML=this.label,this.el.appendChild(a);var b=this.collection,c=b.state,d=c.currentPage,e=this.pageIndex;return this.isRewind&&d==c.firstPage||this.isBack&&!b.hasPreviousPage()||this.isForward&&!b.hasNextPage()||this.isFastForward&&(d==c.lastPage||c.totalPages<1)?this.$el.addClass("disabled"):this.isRewind||this.isBack||this.isForward||this.isFastForward||c.currentPage!=e||this.$el.addClass("active"),this.delegateEvents(),this},changePage:function(a){a.preventDefault();var b=this.$el,c=this.collection;return b.hasClass("active")||b.hasClass("disabled")||(this.isRewind?c.getFirstPage():this.isBack?c.getPreviousPage():this.isForward?c.getNextPage():this.isFastForward?c.getLastPage():c.getPage(this.pageIndex,{reset:!0})),this}}),e=c.Extension.Paginator=b.View.extend({className:"backgrid-paginator",windowSize:10,slideScale:.5,controls:{rewind:{label:"《",title:"First"},back:{label:"〈",title:"Previous"},forward:{label:"〉",title:"Next"},fastForward:{label:"》",title:"Last"}},renderIndexedPageHandles:!0,pageHandle:d,goBackFirstOnSort:!0,initialize:function(b){var c=this;c.controls=a.defaults(b.controls||{},c.controls,e.prototype.controls),a.extend(c,a.pick(b||{},"windowSize","pageHandle","slideScale","goBackFirstOnSort","renderIndexedPageHandles"));var d=c.collection;c.listenTo(d,"add",c.render),c.listenTo(d,"remove",c.render),c.listenTo(d,"reset",c.render),c.listenTo(d,"backgrid:sorted",function(){c.goBackFirstOnSort&&d.getFirstPage({reset:!0})})},slideMaybe:function(a,b,c,d){return Math.round(c%d/d)},slideThisMuch:function(a,b,c,d,e){return~~(d*e)},_calculateWindow:function(){var a=this.collection,b=a.state,c=b.firstPage,d=+b.lastPage;d=Math.max(0,c?d-1:d);var e=Math.max(b.currentPage,b.firstPage);e=c?e-1:e;var f=this.windowSize,g=this.slideScale,h=Math.floor(e/f)*f;e (…)
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/resources/css/am-user/structure/
H A Duma.less198 max-height: 0;
210 max-height: 500px;
212 transition: max-height 500ms ease-out, opacity 500ms ease-in-out ;
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/libs/
H A Dbackgrid-paginator-0.3.5-custom.min.js8 !function(a,b){"object"==typeof exports&&(module.exports=b(require("underscore"),require("backbone"),require("backgrid"),require("backbone.paginator"))),"function"==typeof define&&define.amd?define(["underscore","backbone","backgrid","backbone.paginator"],b):b(a._,a.Backbone,a.Backgrid)}(this,function(a,b,c){"use strict";var d=c.Extension.PageHandle=b.View.extend({tagName:"li",events:{"click a":"changePage"},title:function(a){return"Page "+a.label},isRewind:!1,isBack:!1,isForward:!1,isFastForward:!1,initialize:function(b){var c=this.collection,d=c.state,e=d.currentPage,f=d.firstPage,g=d.lastPage;a.extend(this,a.pick(b,["isRewind","isBack","isForward","isFastForward"]));var h;this.isRewind?h=f:this.isBack?h=Math.max(f,e-1):this.isForward?h=Math.min(g,e+1):this.isFastForward?h=g:(h=+b.pageIndex,h=f?h+1:h),this.pageIndex=h,this.label=(b.label||(f?h:h+1))+"";var i=b.title||this.title;this.title=a.isFunction(i)?i({label:this.label}):i},render:function(){this.$el.empty();var a=document.createElement("a");a.href="#",this.title&&(a.title=this.title),a.innerHTML=this.label,this.el.appendChild(a);var b=this.collection,c=b.state,d=c.currentPage,e=this.pageIndex;return this.isRewind&&d==c.firstPage||this.isBack&&!b.hasPreviousPage()||this.isForward&&!b.hasNextPage()||this.isFastForward&&(d==c.lastPage||c.totalPages<1)?this.$el.addClass("disabled"):this.isRewind||this.isBack||this.isForward||this.isFastForward||c.currentPage!=e||this.$el.addClass("active"),this.delegateEvents(),this},changePage:function(a){a.preventDefault();var b=this.$el,c=this.collection;return b.hasClass("active")||b.hasClass("disabled")||(this.isRewind?c.getFirstPage():this.isBack?c.getPreviousPage():this.isForward?c.getNextPage():this.isFastForward?c.getLastPage():c.getPage(this.pageIndex,{reset:!0})),this}}),e=c.Extension.Paginator=b.View.extend({className:"backgrid-paginator",windowSize:10,slideScale:.5,controls:{rewind:{label:"《",title:"First"},back:{label:"〈",title:"Previous"},forward:{label:"〉",title:"Next"},fastForward:{label:"》",title:"Last"}},renderIndexedPageHandles:!0,pageHandle:d,goBackFirstOnSort:!0,initialize:function(b){var c=this;c.controls=a.defaults(b.controls||{},c.controls,e.prototype.controls),a.extend(c,a.pick(b||{},"windowSize","pageHandle","slideScale","goBackFirstOnSort","renderIndexedPageHandles"));var d=c.collection;c.listenTo(d,"add",c.render),c.listenTo(d,"remove",c.render),c.listenTo(d,"reset",c.render),c.listenTo(d,"backgrid:sorted",function(){c.goBackFirstOnSort&&d.getFirstPage({reset:!0})})},slideMaybe:function(a,b,c,d){return Math.round(c%d/d)},slideThisMuch:function(a,b,c,d,e){return~~(d*e)},_calculateWindow:function(){var a=this.collection,b=a.state,c=b.firstPage,d=+b.lastPage;d=Math.max(0,c?d-1:d);var e=Math.max(b.currentPage,b.firstPage);e=c?e-1:e;var f=this.windowSize,g=this.slideScale,h=Math.floor(e/f)*f;e (…)
/forgerock/openam/openam-ui/openam-ui-ria/src/main/resources/css/am-user/structure/
H A Duma.less198 max-height: 0;
210 max-height: 500px;
212 transition: max-height 500ms ease-out, opacity 500ms ease-in-out ;
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/ui/
H A DCurrentStepPanel.java136 minWidth = Math.max(minWidth, getPanel(s).getMinimumWidth());
137 minHeight = Math.max(minHeight, getPanel(s).getMinimumHeight());
H A DFramePanel.java139 Math.max((int) getPreferredSize().getWidth(), backGroundIconWidth
143 Math.max((int) getPreferredSize().getHeight(), backGroundIconHeight
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/components/
H A DActionButton.java149 setPreferredSize(new Dimension(Math.max(d1.width,d2.width),
150 Math.max(d1.height, d2.height)));
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/ui/
H A DCurrentStepPanel.java144 minWidth = Math.max(minWidth, getPanel(s).getMinimumWidth());
145 minHeight = Math.max(minHeight, getPanel(s).getMinimumHeight());
H A DFramePanel.java140 Math.max((int) getPreferredSize().getWidth(), backGroundIconWidth
144 Math.max((int) getPreferredSize().getHeight(), backGroundIconHeight
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/event/
H A DClickTooltipDisplayer.java146 location.x = sBounds.x + Math.max(0, sBounds.width - size.width);
152 location.y = sBounds.y + Math.max(0, sBounds.height - size.height);

Completed in 222 milliseconds

1234567891011>>