Searched refs:queue (Results 101 - 125 of 194) sorted by relevance

12345678

/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/animation/
H A Danimation-min.js20 actualFrames+=1;};var onComplete=function(){var actual_duration=(new Date()-startTime)/1000;var data={duration:actual_duration,frames:actualFrames,fps:actualFrames/actual_duration};data.toString=function(){return('duration: '+data.duration+', frames: '+data.frames+', fps: '+data.fps);};isAnimated=false;actualFrames=0;this.onComplete.fire(data);};this._onStart=new YAHOO.util.CustomEvent('_start',this,true);this.onStart=new YAHOO.util.CustomEvent('start',this);this.onTween=new YAHOO.util.CustomEvent('tween',this);this._onTween=new YAHOO.util.CustomEvent('_tween',this,true);this.onComplete=new YAHOO.util.CustomEvent('complete',this);this._onComplete=new YAHOO.util.CustomEvent('_complete',this,true);this._onStart.subscribe(onStart);this._onTween.subscribe(onTween);this._onComplete.subscribe(onComplete);}};YAHOO.util.AnimMgr=new function(){var thread=null;var queue=[];var tweenCount=0;this.fps=1000;this.delay=1;this.registerElement=function(tween){queue[queue.length]=tween;tweenCount+=1;tween._onStart.fire();this.start();};this.unRegister=function(tween,index){tween._onComplete.fire();index=index||getIndex(tween);if(index==-1){return false;}
21 queue.splice(index,1);tweenCount-=1;if(tweenCount<=0){this.stop();}
22 return true;};this.start=function(){if(thread===null){thread=setInterval(this.run,this.delay);}};this.stop=function(tween){if(!tween){clearInterval(thread);for(var i=0,len=queue.length;i<len;++i){if(queue[0].isAnimated()){this.unRegister(queue[0],0);}}
23 queue=[];thread=null;tweenCount=0;}
24 else{this.unRegister(tween);}};this.run=function(){for(var i=0,len=queue.length;i<len;++i){var tween=queue[
[all...]
H A Danimation.js469 * The current queue of registered animation objects.
470 * @property queue
474 var queue = [];
502 * Adds an animation instance to the animation queue.
508 queue[queue.length] = tween;
515 * removes an animation instance from the animation queue.
529 queue.splice(index, 1);
560 for (var i = 0, len = queue.length; i < len; ++i) {
561 if ( queue[
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/animation/
H A Danimation-debug.js473 * The current queue of registered animation objects.
474 * @property queue
478 var queue = [];
506 * Adds an animation instance to the animation queue.
512 queue[queue.length] = tween;
519 * removes an animation instance from the animation queue.
533 queue.splice(index, 1);
564 for (var i = 0, len = queue.length; i < len; ++i) {
565 if ( queue[
[all...]
H A Danimation-min.js20 actualFrames+=1;};var onComplete=function(){var actual_duration=(new Date()-startTime)/1000;var data={duration:actual_duration,frames:actualFrames,fps:actualFrames/actual_duration};data.toString=function(){return('duration: '+data.duration+', frames: '+data.frames+', fps: '+data.fps);};isAnimated=false;actualFrames=0;this.onComplete.fire(data);};this._onStart=new YAHOO.util.CustomEvent('_start',this,true);this.onStart=new YAHOO.util.CustomEvent('start',this);this.onTween=new YAHOO.util.CustomEvent('tween',this);this._onTween=new YAHOO.util.CustomEvent('_tween',this,true);this.onComplete=new YAHOO.util.CustomEvent('complete',this);this._onComplete=new YAHOO.util.CustomEvent('_complete',this,true);this._onStart.subscribe(onStart);this._onTween.subscribe(onTween);this._onComplete.subscribe(onComplete);}};YAHOO.util.AnimMgr=new function(){var thread=null;var queue=[];var tweenCount=0;this.fps=1000;this.delay=1;this.registerElement=function(tween){queue[queue.length]=tween;tweenCount+=1;tween._onStart.fire();this.start();};this.unRegister=function(tween,index){tween._onComplete.fire();index=index||getIndex(tween);if(index==-1){return false;}
21 queue.splice(index,1);tweenCount-=1;if(tweenCount<=0){this.stop();}
22 return true;};this.start=function(){if(thread===null){thread=setInterval(this.run,this.delay);}};this.stop=function(tween){if(!tween){clearInterval(thread);for(var i=0,len=queue.length;i<len;++i){if(queue[0].isAnimated()){this.unRegister(queue[0],0);}}
23 queue=[];thread=null;tweenCount=0;}
24 else{this.unRegister(tween);}};this.run=function(){for(var i=0,len=queue.length;i<len;++i){var tween=queue[
[all...]
H A Danimation.js469 * The current queue of registered animation objects.
470 * @property queue
474 var queue = [];
502 * Adds an animation instance to the animation queue.
508 queue[queue.length] = tween;
515 * removes an animation instance from the animation queue.
529 queue.splice(index, 1);
560 for (var i = 0, len = queue.length; i < len; ++i) {
561 if ( queue[
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/
H A DNodeSearcherQueue.java38 * will add to this queue in order it to be asynchronously executed.
40 * The queue will basically start a certain number of threads and this threads
41 * will "consume" the AbstractNodeTask objects that are added to this queue.
54 * Construct a queue with the specified name.
56 * @param name the name of the queue.
57 * @param threadCount then number of threads that the queue will use.
70 * Returns the name of this queue.
71 * @return the name of this queue.
79 * Shutdown this queue.
88 * Add an object in this queue
92 public synchronized void queue(AbstractNodeTask nodeTask) { method in class:NodeSearcherQueue
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/element/
H A Delement-beta-debug.js702 var queue = this._queue;
703 for (var i = 0, len = queue.length; i < len; ++i) {
704 this[queue[i][0]].apply(this, queue[i][1]);
H A Delement-beta-min.js22 return Dom.setStyle(el,property,value);},getStyle:function(property){return Dom.getStyle(this.get('element'),property);},fireQueue:function(){var queue=this._queue;for(var i=0,len=queue.length;i<len;++i){this[queue[i][0]].apply(this,queue[i][1]);}},appendTo:function(parent,before){parent=(parent.get)?parent.get('element'):Dom.get(parent);this.fireEvent('beforeAppendTo',{type:'beforeAppendTo',target:parent});before=(before&&before.get)?before.get('element'):Dom.get(before);var element=this.get('element');if(!element){return false;}
H A Delement-beta.js693 var queue = this._queue;
694 for (var i = 0, len = queue.length; i < len; ++i) {
695 this[queue[i][0]].apply(this, queue[i][1]);
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/queue/
H A DDeleteOnQueryResultHandlerTest.java16 package org.forgerock.openam.cts.impl.queue;
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/queue/config/
H A DCTSQueueConfigurationTest.java16 package org.forgerock.openam.cts.impl.queue.config;
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/element/
H A Delement-beta-debug.js702 var queue = this._queue;
703 for (var i = 0, len = queue.length; i < len; ++i) {
704 this[queue[i][0]].apply(this, queue[i][1]);
H A Delement-beta-min.js22 return Dom.setStyle(el,property,value);},getStyle:function(property){return Dom.getStyle(this.get('element'),property);},fireQueue:function(){var queue=this._queue;for(var i=0,len=queue.length;i<len;++i){this[queue[i][0]].apply(this,queue[i][1]);}},appendTo:function(parent,before){parent=(parent.get)?parent.get('element'):Dom.get(parent);this.fireEvent('beforeAppendTo',{type:'beforeAppendTo',target:parent});before=(before&&before.get)?before.get('element'):Dom.get(before);var element=this.get('element');if(!element){return false;}
H A Delement-beta.js693 var queue = this._queue;
694 for (var i = 0, len = queue.length; i < len; ++i) {
695 this[queue[i][0]].apply(this, queue[i][1]);
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/impl/queue/
H A DDeleteOnQueryResultHandlerTest.java16 package org.forgerock.openam.cts.impl.queue;
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/impl/queue/config/
H A DCTSQueueConfigurationTest.java16 package org.forgerock.openam.cts.impl.queue.config;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/
H A DCoreTokenAdapter.java27 import org.forgerock.openam.cts.impl.queue.ResultHandlerFactory;
28 import org.forgerock.openam.cts.impl.queue.TaskDispatcher;
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/
H A DCoreTokenAdapterTest.java28 import org.forgerock.openam.cts.impl.queue.ResultHandlerFactory;
29 import org.forgerock.openam.cts.impl.queue.TaskDispatcher;
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/impl/
H A DCoreTokenAdapterTest.java29 import org.forgerock.openam.cts.impl.queue.ResultHandlerFactory;
30 import org.forgerock.openam.cts.impl.queue.TaskDispatcher;
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DNodeSearcherQueue.java38 * will add to this queue in order it to be asynchronously executed.
40 * The queue will basically start a certain number of threads and this threads
41 * will "consume" the AbstractNodeTask objects that are added to this queue.
57 * Construct a queue with the specified name.
59 * @param name the name of the queue.
60 * @param threadCount then number of threads that the queue will use.
73 * Returns the name of this queue.
74 * @return the name of this queue.
82 * Shutdown this queue.
91 * Add an object in this queue
95 public synchronized void queue(AbstractNodeTask nodeTask) { method in class:NodeSearcherQueue
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/browser/
H A DNodeSearcherQueue.java39 * will add to this queue in order it to be asynchronously executed.
41 * The queue will basically start a certain number of threads and this threads
42 * will "consume" the AbstractNodeTask objects that are added to this queue.
58 * Construct a queue with the specified name.
60 * @param name the name of the queue.
61 * @param threadCount then number of threads that the queue will use.
74 * Returns the name of this queue.
75 * @return the name of this queue.
83 * Shutdown this queue.
92 * Add an object in this queue
96 public synchronized void queue(AbstractNodeTask nodeTask) { method in class:NodeSearcherQueue
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/browser/
H A DNodeSearcherQueue.java39 * will add to this queue in order it to be asynchronously executed.
41 * The queue will basically start a certain number of threads and this threads
42 * will "consume" the AbstractNodeTask objects that are added to this queue.
58 * Construct a queue with the specified name.
60 * @param name the name of the queue.
61 * @param threadCount then number of threads that the queue will use.
74 * Returns the name of this queue.
75 * @return the name of this queue.
83 * Shutdown this queue.
92 * Add an object in this queue
96 public synchronized void queue(AbstractNodeTask nodeTask) { method in class:NodeSearcherQueue
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/browser/
H A DNodeSearcherQueue.java38 * will add to this queue in order it to be asynchronously executed.
40 * The queue will basically start a certain number of threads and this threads
41 * will "consume" the AbstractNodeTask objects that are added to this queue.
57 * Construct a queue with the specified name.
59 * @param name the name of the queue.
60 * @param threadCount then number of threads that the queue will use.
73 * Returns the name of this queue.
74 * @return the name of this queue.
82 * Shutdown this queue.
91 * Add an object in this queue
95 public synchronized void queue(AbstractNodeTask nodeTask) { method in class:NodeSearcherQueue
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/browser/
H A DNodeSearcherQueue.java39 * will add to this queue in order it to be asynchronously executed.
41 * The queue will basically start a certain number of threads and this threads
42 * will "consume" the AbstractNodeTask objects that are added to this queue.
58 * Construct a queue with the specified name.
60 * @param name the name of the queue.
61 * @param threadCount then number of threads that the queue will use.
74 * Returns the name of this queue.
75 * @return the name of this queue.
83 * Shutdown this queue.
92 * Add an object in this queue
96 public synchronized void queue(AbstractNodeTask nodeTask) { method in class:NodeSearcherQueue
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/impl/queue/
H A DTaskDispatcher.java16 package org.forgerock.openam.cts.impl.queue;
84 * @see org.forgerock.openam.cts.impl.queue.config.CTSQueueConfiguration#getQueueTimeout()
107 * @see org.forgerock.openam.cts.impl.queue.config.CTSQueueConfiguration#getQueueTimeout()
112 * @throws CoreTokenException If there was a problem adding the task to the queue.
127 * @see org.forgerock.openam.cts.impl.queue.config.CTSQueueConfiguration#getQueueTimeout()
132 * @throws CoreTokenException If there was a problem adding the task to the queue.
147 * @see org.forgerock.openam.cts.impl.queue.config.CTSQueueConfiguration#getQueueTimeout()
169 * a random queue to place the {@link QueryTask} on. There is no guarantee that
174 * @see org.forgerock.openam.cts.impl.queue.config.CTSQueueConfiguration#getQueueTimeout()
179 * @throws CoreTokenException If there was a problem adding the task to the queue
[all...]

Completed in 68 milliseconds

12345678