0
votes
2answers
28 views
Hudson infinite loop polling for changes in Git repository?
The git plugin for hudson works well. However, the build script must update a version number in the files in the repository, commit, and push back to the repository.
When Hudson p …
2
votes
11answers
171 views
When are infinite loops are useful in PHP?
While reading through the great online PHP tutorials of Paul Hudson he said
Perhaps surprisingly, infinite loops
can sometimes be helpful in your
scripts. As infinite loops …
1
vote
2answers
40 views
When test hanging in an infinite loop
I'm tokenising a string with XSLT 1.0 and trying to prevent empty strings from being recognised as tokens. Here's the entire function, based on XSLT Cookbook:
<xsl:template nam …
-1
votes
3answers
73 views
Controller must have access to model and view. Model must have access to controller and view. View must have access to controller and model. Look what happens!
<?
class Launcher {
function launch() {
new Controller();
}
}
class Controller {
function __construct () {
if(!is_object($this->Model)) $this->M …
1
vote
7answers
250 views
Infinite loop at compile time?
Is it possible to enter an infinite loop at compile time?
My program seems to enter an infinite loop when I attempt to compile it. I have a class with a class constructor that cal …
0
votes
2answers
184 views
Stopping a loop.
As explained in my earlier question …
This code …
- (void)syncKVO:(id)sender {
NSManagedObjectContext *moc = [self managedObjectContext];
[syncButton setTitle:@"Syncing.. …
0
votes
1answer
92 views
Method/IBAction stuck in infinite loop. Still no success.
Now this may sound like my earlier problem/question but I've changed and tried a few things that were answered in my other questions to try to make it work, but I've still got the …
2
votes
2answers
66 views
authlogic crashes with infinite recursion
Hello,
I have some trouble with using authlogic in my rails app, so I began using the blank example from github.com/binarylogic/authlogic_example which doesn't work either.
I spe …
1
vote
2answers
171 views
F-Sharp (F#) untyped infinity
I wonder why F-Sharp doesn't support infinity.
This would work in Ruby (but not in f#):
let numbers n = [1 .. 1/0] |> Seq.take(n)
-> System.DivideByZeroException: Attempted …
3
votes
8answers
278 views
How can I remove the while(true) from my loop in Java?
I've heard that using while(true) is a bad programming practice.
So, I've written the following code to get some numbers from a user (with default values). However, if the user h …
0
votes
5answers
112 views
what to do when windows goes in dreaded 100% cpu usage zombie mode
Hi,
happens to me occasionally:
I start my program in visual studio and due to some bug my program goes into 100% cpu usage and basically freezes windows completely.
Only by utt …
2
votes
5answers
270 views
Why does Java toString() loops infinitely on indirect cycles?
This is more a gotcha I wanted to share than a question: when printing with toString(), Java will detect direct cycles in a Collection (where the Collection refers to itself), but …
5
votes
23answers
1k views
for ( ; ; ) or while ( true ) - Which is the Correct C# Infinite Loop?
Back in my C/C++ days, coding an "infinite loop" as
while ( true )
felt more natural and seemed more obvious to me as opposed to
for ( ; ; )
An encounter with PC-lint in the …
0
votes
11answers
421 views
Infinite Loop in C++
Why the following code could/will result in infinite loop?
x=0;
y=0;
while(x<100)
{
minnum=100;
maxnum=100;
while(y<150)
{
if(random[x][y]<mi …
2
votes
7answers
1k views
Java, infinite while loop, incrementation
Hello,
in the following example program in Java, I get infinite loop, and I cannot understand why:
public class Time {
public static int next(int v) {
return v++;
} …
