A stack overflow occurs when too much memory is used on the call stack. NOTE: Do not use this tag to refer to the Stack Overflow website. If you have a question regarding the site, please go to http://meta.stackoverflow.com
0
votes
1answer
13 views
How to import github project to stackoverflow profile?
i am new here in stachoverflow, and i saw this advert about importing our github project to stackoverflow profile :
But really, i cannot find a way to do this. Any helps? thanks!
0
votes
1answer
32 views
EditText causes StackOverflowError on older devices
I am using a third party tool to create a TableView similar to iPhone, you can see it here.
I have done a good bit of editing of this package, and have added the ability for a row to have an ...
0
votes
0answers
29 views
Does random forest in R have a limitation of size of training data?
I am training randomforest on my training data which has 114954 rows and 135 columns (predictors). And I am getting the following error.
model <- randomForest(u_b_stars~. ...
0
votes
0answers
5 views
Why I can't show only Favorite tags on StackOverflow prefs? [migrated]
I am on www.stackoverflow.com for a few days now, and I have noticed something about StackOverflow user prefs that is not quite as I might expect it too be.
I noticed that user is provided with a ...
3
votes
3answers
474 views
Is iteration faster than recursion, or just less prone to stack overflows?
I know you can rewrite a recursive function using a simple loop by using an array as a first-in-first-out queue of 'work remaining to be done'. I have heard this makes it less likely to have a stack ...
1
vote
0answers
34 views
Why does the function pointer get overwritten even though is declared before the vulnerable buffer? [migrated]
I am working on io-wargames for fun right now, level3:
I do understand why there is a stack-overflow in this code (strlen(argv[1])), but what I don't understand is why it overflows the function ...
2
votes
2answers
79 views
autocomplete box likes stackoverflow's tags box
I want to use auto complete box likes stackoverflow's tags box ,
Can you show me some examples or links that can be reference ?
Thanks :)
0
votes
0answers
7 views
Why do Google-tags have a picture in stackoverflow [migrated]
When you look at Stackoverflow's recent tags you'll see that some have a little favicon in front of them. Conspicuously the affected tags are mostly Google products (android, google-chrome, ...
-1
votes
0answers
20 views
stackoverflow not show correct at my computer [closed]
at my computer all the page of the http://stackoverflow.com not show correct,i use IE and chrome but they are all not show the page correct. as the follow the page:
2
votes
2answers
67 views
Find out how deep a call stack went in Clojure (or java)
Clojure is my first foray into the world of lisp. I decided to try a simple recursive function that raises a number to an integer power. Simple enough.
(defmulti pow #(compare %2 0))
(defmethod pow 0 ...
0
votes
0answers
53 views
Getting a stack overflow error in R using when making a heatmap from relatively small data?
I am using R to create a heatmap from a matrix with 4 columns (treatments) and a couple hundred rows. This is all I did:
d <- read.delim("myData.txt",header=TRUE,stringsAsFactors=FALSE , row.names ...
3
votes
1answer
80 views
GHCI stack overflow on `instance Show MyType`
Why do I get stack overflow trying to do this in GHCI (version 7.6.2)? How can I derive a typeclass instance during a GHCI session or why is this not possible?
*Main> data T = T Int
*Main> let ...
0
votes
1answer
21 views
StackOverflow when navigating to another Actiity
In the MainActivity I navigate by playButton to PlayActivity then I go through the PlayActivity and when i is big enough I go to the EndActivity but then I get:
06-05 08:58:15.139: ...
0
votes
0answers
29 views
“Error: Error #1023: Stack overflow occurred.” without a break or object reference
My console window gets a set of about 15 copies of this line:
Error: Error #1023: Stack overflow occurred.
Error: Error #1023: Stack overflow occurred.
Error: Error #1023: Stack overflow occurred.
...
1
vote
2answers
65 views
Unhandled exception System.StackOVerflowException c#
I wrote a piece of code that returns a random string sponsorname from a list of sponsors.
This sponsorname should be visible at each page, so I call the RandomSponsor method in the shared _layout ...