Re: Preparing for the next windows PGO build memory exhaustion

2013-04-15 Thread Ehsan Akhgari
On 2013-04-13 4:28 AM, Mike Hommey wrote: Hi, For almost three months now, we've had graphs following the amount of memory used by the linker on Windows builders during PGO builds. The result can be seen here: http://graphs.mozilla.org/graph.html#tests=[[205,63,8]]&sel=none&displayrange=90&data

Re: A new way to run mach

2013-04-15 Thread Rob Campbell
Well this is pretty sweet. On Mac, does mach do the right thing when you rebuild browser, does it also rebuild browser/app so your application bundle gets updated? Thanks for doing this, Matt! Rob On 2013-03-16, at 3:48 PM, Matt Brubeck wrote: > I recently landed a new feature for the "mach"

Re: Clearing appcache entries

2013-04-15 Thread Gavin Sharp
The only possibly-related code I see in Firefox's "Forget about this Site" functionality is this: http://hg.mozilla.org/mozilla-central/annotate/261d6997d1d1/toolkit/forgetaboutsite/ForgetAboutSite.jsm#l179 Which uses nsIQuotaManager. A quick look at the implementation suggests it doesn't cover "

DOM Bindings Meeting - Monday @ 12:30 PM PDT

2013-04-15 Thread Kyle Huey
Our (ostensibly) weekly DOM bindings meetings continue on Monday April 15th at 12:30 PM PDT. Meeting details: * Monday, April 15, 2013, 12:30 PM PDT (3:30 PM EDT/9:30 PM CEST) * Conference room 7-N, San Francisco office, 7th floor. * Dial-in Info: - Vidyo room: SFO-7N - In office or soft phone:

Re: Clearing appcache entries

2013-04-15 Thread mratcliffe
That will work to clear the group but most users will want to use our tools to clear the cache for a single URI or domain (they probably have no idea what a group is). How is this done? On Monday, April 15, 2013 3:22:00 PM UTC+1, Honza Bambas wrote: > Thanks for bringing this up Mike. True is

Re: Clearing appcache entries

2013-04-15 Thread Honza Bambas
Thanks for bringing this up Mike. True is that our appcache implementation and APIs a bit suck. But good news is that it is going to be much better with APIs being currently newly proposed and discussed for Necko's disk cache (so far, privately, soon it will open). To answer your issue: var

Clearing appcache entries

2013-04-15 Thread mratcliffe
I believe I can clear *all* appcache entries using: Services.cache.evictEntries(Ci.nsICache.STORE_OFFLINE); But how the heck do I: - Clear all entries for a single cache group - Clear all entries for a string match (e.g. domain) - Clear a single entry (or by URI) I have been trying to work this o