Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
295 views

Moving files to Trash Can in Linux using C++

I'm trying to move (delete) a file to a Trash Can (in Linux) using C++ (also using QT4 for GUI). Unfortunately it seems to be quite difficult to do so and as far as I can tell there isn't a unified ...
9
votes
6answers
261 views

How are people solving app pool recycle issues on deployment with large apps?

Currently after a build/deployment of our app (58 projects, large asp.net MVC 3 front end) takes ~15-20secs to load as it goes through the whole 'recycling the app pool' (release configuration). We ...
8
votes
2answers
5k views

IIS App Pools - Stop/Start vs Recycle

I've noticed that on one of my production web apps, when I manually recycle an app pool, the recycled worker process can take upwards of 60+ seconds to actually be completely destroyed, based on ...
7
votes
0answers
176 views

Consensus on lazy loading Bitmaps in an Adapter (emphasis on Bitmap.recycle()) [closed]

I see a truckload of suggestions for this, but none (that I've found) take all factors into account, the factors being: Asynchronous downloading, without duplication (of downloaders and ...
5
votes
1answer
223 views

Asynchronous download of Bitmaps in an Adapter, with emphasis on Bitmap.recycle()

Could someone tell me how to make a good mechanism for async. download of images for use in a ListView/GridView? There are many suggestions, but each only considers a small subset of the typical ...
5
votes
2answers
290 views

In Rails 3, I'm getting a NoMethodError for the recycle! method during testing

I've got a functional test that's using fixtures. I also am using fixtures in my Unit tests, but they work without flaw. When running the functional tests, I get a: NoMethodError: undefined method ...
4
votes
3answers
348 views

What does Bitmap#recycle() in Android Honeycomb actually DO?

I am writing a very memory intensive application for Android Honeycomb, and I've been very careful to recycle() unused Bitmaps wherever possible; indeed, this is necessary for the application to work ...
4
votes
3answers
2k views

IIS Recycle Global.asax

Is it possible to catch an recycle event in the global.asax? I know Application_End will be triggered but is there a way to know that it was triggered by a recycle of the application pool? thx, ...
3
votes
2answers
343 views

ASP.NET Application Pool Recycling Issue

I have a Web Project setup that has both my WebForms and a WCF service. I am having an issue where every so often my application seems to recycle and i lose all singleton objects and session values. ...
2
votes
2answers
942 views

Drawable vs Single reusable Bitmap better with memory?

As I understand it (not that I'm correct) Drawables are generally correctly removed from memory when the application is finished with them. Bitmaps however need to be manually recycled, and sometimes ...
2
votes
5answers
2k views

IIS problem, web application

When I use the web application, the application logs me out. I think it might be an IIS recycle. EventViewer Message: .NET Runtime version 2.0.50727.4927 - Fatal Execution Engine Error ...
2
votes
5answers
222 views

Recycle Freed Objects

suppose I need to allocate and delete object on heap frequently (of arbitrary size), is there any performance benefit if instead of deleting those objects, I will return it back to some "pool" to be ...
2
votes
2answers
650 views

Are there any guarantees about when IIS might recycle while processing a 1-way WCF operation?

Background This question is in two parts. I have a one-way WCF operation hosted in IIS 6. The following is my understanding of how this works: _1. IIS receives a request. _2. IIS sends an ...
1
vote
0answers
10 views

Moodle IIS Crash

I have a fresh install of Moodle 2.1, PHP v5.3, Windows Server 2008 R2, IIS, MySQL, 3GB Ram, 4 CPUs. I use Moodle as a VLE for a School, but have recently been having problems with it not responding ...
1
vote
1answer
984 views

Android: Handle ListView Recycle

I am developing a soundboard application in which I use Listview Activity. But since Listview of Android has the property of recycling its listviews, the changes I make to the selected textview gets ...
1
vote
3answers
839 views

RuntimeException on widget that has a Bitmap (Android)

my app has widgets that have an ImageView and a TextView. On the onUpdate() method of the WidgetProvider, I put a Bitmap inside the ImageView this way: Bitmap bitmap = ...
1
vote
1answer
189 views

IIS recycle causes error in static dataset access

In the asp.net webservice, I have a static dataset that loads data (synchronized) upon first time access. However, when IIS recycle the app pool, I have exception thrown because of "Collection was ...
0
votes
0answers
19 views

Why does the IIS worker process recycle every 29 hours and not every 24 hours? [migrated]

When you setup a site on IIS it defaults the worker process to recycle every 1740 minutes (29 hours). Why an odd number like 29 hours and not, for example, 24 or 48 hours?
0
votes
0answers
49 views

How to check app pool last recycled

is it possible to check when i recycled the app pool last time, i want to check the date when my app pool was last recycled, is there anything in IIS i can get this info.
0
votes
0answers
91 views

Problems turning down the volume and crash

I have some report from my app on specific handset (Asus Garmin and HTC Sensation 4G, at the moment). It seems that when the user manage volume button (but it happens even on other events showing ...
0
votes
1answer
142 views

Android bitmap recycle

I am having an issue with bitmap recycle. I am displaying the bitmaps in a grid view . I have about 40-50 thumbnails. when I down load the thumb image from the url I cached it to disk. Set the bitmap ...
0
votes
1answer
190 views

Android: “trying to use a recycled bitmap” error with temporary Bitmaps

My app can load quite large images. In an effort to be memory-conservative, I'm attempting to use a temporary bitmap to load and another for the final image after transformation: ..... ...
0
votes
1answer
327 views

Bitmap Memory Leak?

got a question for you. I've been making a menu system that mimics ViewFlipper except I personally reset the images and text within the RootView myself, trying to avoid Bitmap related OOM. All was ...
0
votes
1answer
93 views

When do static objects in WCF server get disposed?

Here is my scenario: I have a static object which will connect to a concurrent license service to get a license. I will need this license on some of the non-static methods in my WCF service. The ...
0
votes
2answers
138 views

Is there a way to tell if a Bitmap has been completely disposed on Android?

I am creating a viewer application that calls BitmapRegionDecoder.decodeRegion(Rect, BitmapFactory.Options). I am disposing of the bitmap previously got from decodeRegion before each call: //this is ...
0
votes
1answer
242 views

IIS Application Pool Recycle

I have to recycle IIS (version 7.5) application pool programatically using c#. When I try to get ApplicationPoolCollection using "ServerManager" class UnauthorizedAccessException raised. I guess I ...
0
votes
3answers
353 views

Scaling images in Android causes OutOfMemory exception

I'm developing an Android game consisting of many images as sprites. When I load the images the following way: public static Bitmap loadBitmap(int resId) { return ...
0
votes
0answers
57 views

How to implement a sequence generator that can reclaim unused sequence numbers?

The familiar "Sequence" class looks like this (I am going to use Python-like psuedocode): class Sequence: # sequence numbers will start with this value def init( seq_start:integer ): ...
0
votes
2answers
737 views

Android - Unable to check all the CheckBoxes in a custom listview because of recycling issue?

I have a custom listview adapter with a imageview, textview and a checkbox. and i also have a button and a checkbox in my main layout(not in listview). What here i want is to check all these listview ...
0
votes
1answer
387 views

Android: Gridview is caching outdated item, how to ensure getview is called for every displaying item upon a reload of the page?

Context: I have a main activity holding 6 tabs, each tabs holds a gridview with 30+ images, and around 8 images a shown at any moment (each gridview is scollable). With these many images I ...
0
votes
1answer
312 views

Weird memory increase on application pool recycle

I'd like to describe strange issue I've noticed while analyzing my asp.net application in production and ask for some advice or opinion on the following matter. Application usually runs with some ...
0
votes
2answers
403 views

Automatically Restarting Website after IIS AppPool recyle

I'm using a website which interacts with SQL Server Agent in order to schedule the automatic processing and emailing of reports. I recently noticed that when the AppPool recyles, that i'm not getting ...
0
votes
1answer
264 views

Find Date Recycle Bin Was Last Emptied

Where on my computer would I be able to find the last date that the recycle bin was last emptied, would such an event be stored in the windows system logs? and if so where? Thanks :)
0
votes
1answer
39 views

Alternative to resetting the asp “Windows Services” every few days

One of my site is on a shared hosting and every few days the site will stop working. The pages will simply stop loading. After contacting my host they suggested that I disable/re-enable from their ...
0
votes
2answers
912 views

Session expires using state server on application pool refresh

I have a .NET 1.1 application hosted on two different servers, but on one of them whenever the application pool is recycled, all sessions are dropped. Both applications are using “StateServer” ...