/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ |
H A D | linkedView.js | 45 exports.fetch = function (resourceName) {
|
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | NodeSearcherQueue.java | 162 * @throws InterruptedException if the call to fetch was interrupted by 165 private synchronized AbstractNodeTask fetch() throws InterruptedException { method in class:NodeSearcherQueue 241 AbstractNodeTask task = fetch();
|
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | NodeSearcherQueue.java | 163 * @throws InterruptedException if the call to fetch was interrupted by 166 private synchronized AbstractNodeTask fetch() throws InterruptedException { method in class:NodeSearcherQueue 242 AbstractNodeTask task = fetch();
|
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | NodeSearcherQueue.java | 163 * @throws InterruptedException if the call to fetch was interrupted by 166 private synchronized AbstractNodeTask fetch() throws InterruptedException { method in class:NodeSearcherQueue 242 AbstractNodeTask task = fetch();
|
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | NodeSearcherQueue.java | 162 * @throws InterruptedException if the call to fetch was interrupted by 165 private synchronized AbstractNodeTask fetch() throws InterruptedException { method in class:NodeSearcherQueue 241 AbstractNodeTask task = fetch();
|
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/browser/ |
H A D | NodeSearcherQueue.java | 163 * @throws InterruptedException if the call to fetch was interrupted by 166 private synchronized AbstractNodeTask fetch() throws InterruptedException { method in class:NodeSearcherQueue 242 AbstractNodeTask task = fetch();
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/ |
H A D | NodeSearcherQueue.java | 164 * @throws InterruptedException if the call to fetch was interrupted by 167 private synchronized AbstractNodeTask fetch() throws InterruptedException { method in class:NodeSearcherQueue 246 AbstractNodeTask task = fetch();
|
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/imageloader/ |
H A D | imageloader-experimental-debug.js | 64 * Keeps track of each trigger's element, event, and event-listener-callback "fetch" function 79 * Class name that will identify images belonging to the group. This class name will be removed from each element in order to fetch images. 88 * Elements are stored during the _foldCheck function and reused later during the fetch function. Gives a slight performance improvement when className and foldConditional are both used 112 /* Need to wrap the fetch function. Event Util can't distinguish prototyped functions of different instantiations 114 * groupZ's timeout fires; we remove the triggers. The removeListener call finds the first window-scroll event with Y.u.IL.p.fetch, which is groupA's. 118 this.fetch(); 141 * Returns the group's fetch method, with the proper closure, for use with setTimeout 143 * @return {Function} group's fetch method 148 return function() { self.fetch(); }; 189 * @method fetch [all...] |
H A D | imageloader-experimental-min.js | 10 var wrappedFetch=function(){this.fetch();};this._triggers.push([trigEl,trigAct,wrappedFetch]);YAHOO.util.Event.addListener(trigEl,trigAct,wrappedFetch,this,true);};YAHOO.util.ImageLoader.group.prototype._onloadTasks=function(){if(this.timeoutLen&&typeof(this.timeoutLen)=='number'&&this.timeoutLen>0){this._timeout=setTimeout(this._getFetchTimeout(),this.timeoutLen*1000);} 11 if(this.foldConditional){this._foldCheck();}};YAHOO.util.ImageLoader.group.prototype._getFetchTimeout=function(){var self=this;return function(){self.fetch();};};YAHOO.util.ImageLoader.group.prototype.registerBgImage=function(domId,url){this._imgObjs[domId]=new YAHOO.util.ImageLoader.bgImgObj(domId,url);return this._imgObjs[domId];};YAHOO.util.ImageLoader.group.prototype.registerSrcImage=function(domId,url,width,height){this._imgObjs[domId]=new YAHOO.util.ImageLoader.srcImgObj(domId,url,width,height);return this._imgObjs[domId];};YAHOO.util.ImageLoader.group.prototype.registerPngBgImage=function(domId,url){this._imgObjs[domId]=new YAHOO.util.ImageLoader.pngBgImgObj(domId,url);return this._imgObjs[domId];};YAHOO.util.ImageLoader.group.prototype.fetch=function(){YAHOO.log('Fetching images in group: "'+this.name+'".','info','imageloader');clearTimeout(this._timeout);for(var i=0;i<this._triggers.length;i++){YAHOO.util.Event.removeListener(this._triggers[i][0],this._triggers[i][1],this._triggers[i][2]);} 12 this._fetchByClass();for(var id in this._imgObjs){if(YAHOO.lang.hasOwnProperty(this._imgObjs,id)){this._imgObjs[id].fetch();}}};YAHOO.util.ImageLoader.group.prototype._foldCheck=function(){YAHOO.log('Checking for images above the fold in group: "'+this.name+'"','info','imageloader');var scrollTop=(document.compatMode!='CSS1Compat')?document.body.scrollTop:document.documentElement.scrollTop;var viewHeight=YAHOO.util.Dom.getViewportHeight();var hLimit=scrollTop+viewHeight;var scrollLeft=(document.compatMode!='CSS1Compat')?document.body.scrollLeft:document.documentElement.scrollLeft;var viewWidth=YAHOO.util.Dom.getViewportWidth();var wLimit=scrollLeft+viewWidth;for(var id in this._imgObjs){if(YAHOO.lang.hasOwnProperty(this._imgObjs,id)){var elPos=YAHOO.util.Dom.getXY(this._imgObjs[id].domId);if(elPos[1]<hLimit&&elPos[0]<wLimit){YAHOO.log('Image with id "'+this._imgObjs[id].domId+'" is above the fold. Fetching image.','info','imageloader');this._imgObjs[id].fetch();}}} 15 YAHOO.util.Dom.removeClass(this._classImageEls,this.className);};YAHOO.util.ImageLoader.imgObj=function(domId,url){this.domId=domId;this.url=url;this.width=null;this.height=null;this.setVisible=false;this._fetched=false;};YAHOO.util.ImageLoader.imgObj.prototype.fetch=function(){if(this._fetched){return;}
|
H A D | imageloader-experimental.js | 64 * Keeps track of each trigger's element, event, and event-listener-callback "fetch" function 79 * Class name that will identify images belonging to the group. This class name will be removed from each element in order to fetch images. 88 * Elements are stored during the _foldCheck function and reused later during the fetch function. Gives a slight performance improvement when className and foldConditional are both used 112 /* Need to wrap the fetch function. Event Util can't distinguish prototyped functions of different instantiations 114 * groupZ's timeout fires; we remove the triggers. The removeListener call finds the first window-scroll event with Y.u.IL.p.fetch, which is groupA's. 118 this.fetch(); 141 * Returns the group's fetch method, with the proper closure, for use with setTimeout 143 * @return {Function} group's fetch method 148 return function() { self.fetch(); }; 189 * @method fetch [all...] |
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/imageloader/ |
H A D | imageloader-experimental-debug.js | 64 * Keeps track of each trigger's element, event, and event-listener-callback "fetch" function 79 * Class name that will identify images belonging to the group. This class name will be removed from each element in order to fetch images. 88 * Elements are stored during the _foldCheck function and reused later during the fetch function. Gives a slight performance improvement when className and foldConditional are both used 112 /* Need to wrap the fetch function. Event Util can't distinguish prototyped functions of different instantiations 114 * groupZ's timeout fires; we remove the triggers. The removeListener call finds the first window-scroll event with Y.u.IL.p.fetch, which is groupA's. 118 this.fetch(); 141 * Returns the group's fetch method, with the proper closure, for use with setTimeout 143 * @return {Function} group's fetch method 148 return function() { self.fetch(); }; 189 * @method fetch [all...] |
H A D | imageloader-experimental-min.js | 10 var wrappedFetch=function(){this.fetch();};this._triggers.push([trigEl,trigAct,wrappedFetch]);YAHOO.util.Event.addListener(trigEl,trigAct,wrappedFetch,this,true);};YAHOO.util.ImageLoader.group.prototype._onloadTasks=function(){if(this.timeoutLen&&typeof(this.timeoutLen)=='number'&&this.timeoutLen>0){this._timeout=setTimeout(this._getFetchTimeout(),this.timeoutLen*1000);} 11 if(this.foldConditional){this._foldCheck();}};YAHOO.util.ImageLoader.group.prototype._getFetchTimeout=function(){var self=this;return function(){self.fetch();};};YAHOO.util.ImageLoader.group.prototype.registerBgImage=function(domId,url){this._imgObjs[domId]=new YAHOO.util.ImageLoader.bgImgObj(domId,url);return this._imgObjs[domId];};YAHOO.util.ImageLoader.group.prototype.registerSrcImage=function(domId,url,width,height){this._imgObjs[domId]=new YAHOO.util.ImageLoader.srcImgObj(domId,url,width,height);return this._imgObjs[domId];};YAHOO.util.ImageLoader.group.prototype.registerPngBgImage=function(domId,url){this._imgObjs[domId]=new YAHOO.util.ImageLoader.pngBgImgObj(domId,url);return this._imgObjs[domId];};YAHOO.util.ImageLoader.group.prototype.fetch=function(){YAHOO.log('Fetching images in group: "'+this.name+'".','info','imageloader');clearTimeout(this._timeout);for(var i=0;i<this._triggers.length;i++){YAHOO.util.Event.removeListener(this._triggers[i][0],this._triggers[i][1],this._triggers[i][2]);} 12 this._fetchByClass();for(var id in this._imgObjs){if(YAHOO.lang.hasOwnProperty(this._imgObjs,id)){this._imgObjs[id].fetch();}}};YAHOO.util.ImageLoader.group.prototype._foldCheck=function(){YAHOO.log('Checking for images above the fold in group: "'+this.name+'"','info','imageloader');var scrollTop=(document.compatMode!='CSS1Compat')?document.body.scrollTop:document.documentElement.scrollTop;var viewHeight=YAHOO.util.Dom.getViewportHeight();var hLimit=scrollTop+viewHeight;var scrollLeft=(document.compatMode!='CSS1Compat')?document.body.scrollLeft:document.documentElement.scrollLeft;var viewWidth=YAHOO.util.Dom.getViewportWidth();var wLimit=scrollLeft+viewWidth;for(var id in this._imgObjs){if(YAHOO.lang.hasOwnProperty(this._imgObjs,id)){var elPos=YAHOO.util.Dom.getXY(this._imgObjs[id].domId);if(elPos[1]<hLimit&&elPos[0]<wLimit){YAHOO.log('Image with id "'+this._imgObjs[id].domId+'" is above the fold. Fetching image.','info','imageloader');this._imgObjs[id].fetch();}}} 15 YAHOO.util.Dom.removeClass(this._classImageEls,this.className);};YAHOO.util.ImageLoader.imgObj=function(domId,url){this.domId=domId;this.url=url;this.width=null;this.height=null;this.setVisible=false;this._fetched=false;};YAHOO.util.ImageLoader.imgObj.prototype.fetch=function(){if(this._fetched){return;}
|
H A D | imageloader-experimental.js | 64 * Keeps track of each trigger's element, event, and event-listener-callback "fetch" function 79 * Class name that will identify images belonging to the group. This class name will be removed from each element in order to fetch images. 88 * Elements are stored during the _foldCheck function and reused later during the fetch function. Gives a slight performance improvement when className and foldConditional are both used 112 /* Need to wrap the fetch function. Event Util can't distinguish prototyped functions of different instantiations 114 * groupZ's timeout fires; we remove the triggers. The removeListener call finds the first window-scroll event with Y.u.IL.p.fetch, which is groupA's. 118 this.fetch(); 141 * Returns the group's fetch method, with the proper closure, for use with setTimeout 143 * @return {Function} group's fetch method 148 return function() { self.fetch(); }; 189 * @method fetch [all...] |
/forgerock/authenticator-android-v2/app/libs/ |
H A D | picasso-2.4.0.jar | META-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ... |
/forgerock/opendj-b2.6/ext/svnkit/ |
H A D | antlr-runtime.jar | META-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/runtime/ org/antlr/runtime/misc/ ... |
H A D | sqljet.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj2/ext/svnkit/lib/ |
H A D | antlr-runtime-3.4.jar | META-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/runtime/ org/antlr/runtime/misc/ ... |
H A D | sqljet-1.1.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj2.6.2/ext/svnkit/ |
H A D | antlr-runtime.jar | META-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/runtime/ org/antlr/runtime/misc/ ... |
H A D | sqljet.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/opendj2-hg/ext/svnkit/lib/ |
H A D | antlr-runtime-3.4.jar | META-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/runtime/ org/antlr/runtime/misc/ ... |
H A D | sqljet-1.1.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
/forgerock/openam-v13/openam-oauth/samples/StockClient/lib/ |
H A D | javaee.jar | META-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ... |
/forgerock/openam-v13/openam-oauth/samples/StockService/lib/ |
H A D | javaee.jar | META-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ... |
/forgerock/opendj2/resource/dsml/lib/ |
H A D | j2ee.jar | META-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ... |