Questions tagged [recycle]
338 questions
1
vote
0 answers
How to stop recycling for uneven row lengths in r
My data contains a library of words I am trying to import. The difference with this questions is I am separating words and punctuation. My original file has about 1,000,000 rows. I figured out how to separate the punctuation. However, I figured out…

FrosyFeet456
- 349
- 2
- 12
1
vote
0 answers
Why I have to recycle AppPool in order to IIS works correctly?
I am struggling in a problem I have this scenario:
Production Server
Windows Server 2012 R2
Internet Information Server 8.5
AppPool v4.0
16 GB RAM
Intel Xeon(R) E7 (8CPUs)
Project
MVC 4 ASP.NET
Twilio SMS service
ITextSharp (PDF)
In order to…

EduardoUstarez
- 603
- 11
- 22
1
vote
1 answer
Rows in Kivy RecycleView repeating
I'm using Kivy RecycleView with a Row class to create an editable table of values. The problem is that when I type an entry in one line, this value also appears in other lines further down in the table. In the debugger, editing a row shows…

shiroobi
- 11
- 2
1
vote
2 answers
R repeat a matrix recycle
I have a matrix of time series data as below and I want to create 104 replicates of it.
The sample of original data as below (the total data include 104 years of monthly streamflows)
Month Year streamflow1 streamflow2
1 1913 3632 703
2 …

Heerbod
- 53
- 9
1
vote
0 answers
ListView EditText values changing on Scrolling also Taking Duplicate Entry
Please Help to Solve My Issue !!
In the Activity there is a listview and A Button
ListView Row contains a TextView which displays the Serial No and 3 Edittexts (in which values will be entered)
The button Adds another row to the List.
I used my…

Ruchi
- 21
- 3
1
vote
1 answer
GridView OnClick Listener Doesn't Work Sometimes
I've a strange problem. I've a gridView with 9 items (0-8) (can be more/less). As the below picture shows, it shows first 4 items on my device's screen.
A green tick mark is added whenever an item is clicked. It works fine almost every-time. But…

noob-Sci-Bot
- 231
- 5
- 18
1
vote
1 answer
Listview recycling when using different layouts
I have created a ListView using an adapter but the only problem is that we use different layouts because it is a messaging app. I want to improve performance by using view recycling but cannot figure out how to recycle the view.
Is it possible to…

Declan Marks
- 65
- 1
- 8
1
vote
1 answer
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 80-90 MB of memory footprint. This seems stable since…

user541612
- 11
- 2
1
vote
0 answers
How do you correctly and programmatically recycle an app pool on an IIS server
This is what I am currently doing
public static string RecycleSite(string siteName)
{
try
{
using (ServerManager iisManager = new ServerManager())
{
SiteCollection sites = iisManager.Sites;
foreach…

bsailor
- 31
- 3
1
vote
3 answers
UIView Not Rounded, UITableView Cell Recycling
I have a UIView within the cell of a UITableView. My cellForRowAtIndexPath rounds that view. When I open the viewcontroller and see the table, all the visible views are rounded. However, when I scroll down, the first new cell to appear does not have…

Dave G
- 12,042
- 7
- 57
- 83
1
vote
2 answers
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 reports afterwards - until someone logs into the…

Andrew
- 11
- 2
1
vote
1 answer
How to limit IIS Express's memory usage / force app pool recyle
I've got a website project setup to use IIS Express from visual studio 2012. Once started it slowly uses up more and more memory on my development computer. Once I deploy it it seems to stay fairly steady though. Obviously there is a memory leak…

Brian Heward
- 524
- 4
- 14
1
vote
1 answer
How to keep My Application(record screen)alive when back to background in android phone?
I write a record screen applicatioin,when I press the start button,
begin to record screen and
call moveTaskToBack(true);
when I don't do heavy task ,the record screen work ok,
when I do some heavy task,the record screen application recycle by…

Joe
- 23
- 4
1
vote
1 answer
Android bidirectional view with recycling views?
After several hours of investigation, I didn't find any view in Android who can scroll in both directions with ability of recycling views.
What I'm looking for? I need a view that can display grid of 256x256 buttons at all.
On the screen can be…

Sergey Shustikov
- 15,377
- 12
- 67
- 119
1
vote
1 answer
C# WPF Datagrid with recycling virtualization
I made datagrid based on wpf datagrid.
I use recycling virtualization and after scrolling shows some cells in random order.
When i changed one cell all ok, but when i scrolling to end of datagrid, return back and trying to change one cell, another…

dude.just.dude
- 11
- 4