Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
11answers
724 views

Do Perl loop labels count as a GOTO?

Generally, it is good practice to avoid GOTOs. Keeping that in mind I've been having a debate with a coworker over this topic. Consider the following code: Line: while( <> ) { next ...
6
votes
3answers
166 views

Why does else behave differently in for/while statements as opposed to if/try statements?

I have recently stumbled over a seeming inconsistency in Python's way of dealing with else clauses in different compound statements. Since Python is so well designed, I'm sure that there is a good ...
5
votes
6answers
146 views

How to avoid code duplication?

Is it possible to avoid code duplication in such cases? (Java code) void f() { int r; boolean condition = true; while(condition) { // some code here (1) r = check(); ...
5
votes
2answers
337 views

How do I break an outer loop from an inner one in Perl?

Suppose I have a piece of Perl code like: foreach my $x (@x) { foreach my $y (@z) { foreach my $z (@z) { if (something()) { # I want to break free! } # do stuff } # do stuff } ...
4
votes
6answers
333 views

python try/finally for flow control

I'm sure this concept has come up before but I can't find a good, simple answer. Is using try/finally a bad way to handle functions with multiple returns? For example I have try: if x: ...
4
votes
6answers
6k views

SQL Server 2000: How to exit a stored procedure?

How can i exit in the middle of a stored procedure? i have a stored procedure where i want to bail out early (while trying to debug it). i've tried calling RETURN and RAISERROR, and the sp keeps on ...
4
votes
1answer
4k views

How to implement a do-while loop in tsql

I'm trying to figure how to implement this in TSQL do update stuff set col = 'blah' where that_row = 'the right one' select trash from stuff ... until some_condition The only iterative control ...
3
votes
2answers
171 views

Firebird Case Statement inside stored procedure

I was trying to use the Case Statement inside stored procedure but I got "Token unknown " on it. Case is not supported in stored procedure? Thanks
3
votes
5answers
137 views

C branch on static variable optimization

Let me preface this by saying I haven't profiled this code, nor is it a critical path. This is mostly for my own curiosity. I have a function that declares/defines a static int to a known error value ...
3
votes
9answers
434 views

Flow controlling macros with 'goto'

Yes, two hated constructs combined. Is it as bad as it sounds or can it be seen as a good way to control usage of goto and also provide a reasonable cleanup strategy? At work we had a discussion ...
2
votes
6answers
126 views

Python: avoiding if condition for this code?

for the following code a =func() if a != None: b.append(a) a can be assigned to None, is there a way to avoid the if statement and only use one line of code? original problem is the following ...
2
votes
1answer
157 views

UDP flow control with Python Twisted

I have a class that inherits from twisted.internet.protocol.DatagramProtocol class. In my startProtocol() implementation I call startWriting(), so that socket gets notified each time I can write to it ...
2
votes
3answers
61 views

make these javascript functions more portable

I'm missing some fundamental understanding of javascript function flow control... I've created a jquery slideshow. The show is broken down into logical sections, each section is controlled by a ...
2
votes
5answers
98 views

C preprocessor flow control depending on function arguments

what i want to do is something like this #define TRIPLE_LOOP(code)\ //if there is something in code \ for(...) for(...) for(...) { code }\ //if code is empty then\ SOME_OTHER_CODE so that ...
2
votes
5answers
120 views

use of “if/elseif/else” versus “if/else{if/else}”

I find myself very commonly using a pattern like this: if (a > b) { foo(); } elseif (c > d) { bar(); } else { baz(); } The point here being that the second condition is not ...
2
votes
3answers
95 views

Syntax or construct to simplify if() statement?

I'm looking for a semantic or language construct that will simplify some of my if statements. If I have an if statement with an or, where I 'choose' between two values, I'd like to have that chosen ...
2
votes
2answers
1k views

How can I execute several maven plugins within a single phase and set their respective execution order?

I would like to breakup certain phases in the maven life cycle into sub phases. I would like to control the execution flow from one sub-phase to another, sort of like with ant dependencies. For ...
2
votes
1answer
388 views

Need help parsing results from ldap to csv

I am trying to create a script to generate a csv file with the results of some ldap queries using Net::LDAP but I'm having troubles skipping incomplete lines if one element of the @attributes array is ...
1
vote
3answers
48 views

Error trying to loop through array of hashes in Perl

This has been asked before a couple of times, but none of those answers seem to work for my situation. My code: open(FILE, "<", $fileb) or die "File not openable: $!"; while (<FILE>) { ...
1
vote
4answers
228 views

Ruby: Difference between a for loop and an each loop? [closed]

Possible Duplicate: for vs each in Ruby Let's say that we have an array, like sites = %w[stackoverflow stackexchange serverfault] What's the difference between for x in sites do puts x ...
1
vote
3answers
150 views

do-while condition without declaring a separate variable

I have a do-while loop inside a function that resembles something like this: do { // a bunch of stuff if (something < something else) { return true; } else if (stuff ...
1
vote
2answers
396 views

Selenium IDE: executing a test within a test

I have written a test using selenium IDE (with flow control extensions) that iterates through elements within 2 drop-down lists (using 2 loops) and populates a data entry form according to the ...
1
vote
2answers
135 views

Perl elsif not being evaulated

Anyone see anything wrong with this code? When we execute it (on Linux), we get taken straight to the "Error: Unknown host" block. Perl is version 5.8.6 $hostname = "host2"; if ($hostname eq ...
1
vote
5answers
618 views

how to combine switch and if else statements

I'm taking an online java class and the teacher has asked for the following: Write a menu program that ask a user for a number indicating the four basic math equations(addition, subtraction, ...
1
vote
4answers
136 views

Java Flow Control Problem

I am programming a simple 2d game engine. I've decided how I'd like the engine to function: it will be composed of objects containing "events" that my main game loop will trigger when appropriate. A ...
1
vote
3answers
160 views

Exiting from the Middle of an Expression Without Using Exceptions

Solved: I figured out a clean way to do it with setjmp()/longjmp(), requiring only a minimal wrapper like: int jump(jmp_buf j, int i) { longjmp(j, i); return 0; } This allows jump() to be used in ...
0
votes
0answers
8 views

Series of questions with Yes/no answers, based on answer to the previous one

I'm attempting to create a short decision making tool (Windows desktop) where there is a short list of questions. Answer to each are either Yes or No. You start with a set question, but the ...
0
votes
2answers
43 views

flow control with jQuery and ajax: Identify which response belongs to which call

I want to identify which response belongs to which (async) call. In my client web application I have a list of items. Every time the user navigates to an item the application makes an ajax-call to ...
0
votes
2answers
75 views

Later code affecting earlier code, debugger going in to code block it shouldn't be entering

I have the following code ... var len = request.Code.Trim().Length; if (len.Equals(0)) { throw new ArgumentOutOfRangeException("request.Code"); } try { var obj = ...
0
votes
2answers
34 views

Using php flow control when accessing methods and classes

I am currently using a class to control access to certain files in my site. The class works fine. However, i've recently been informed that I need to create a much more fine-grained system for one ...
0
votes
2answers
40 views

Loop flow control

I have an array of objects, each object has a function that returns a Boolean value. What I need to do, is have a loop continuously running until each object returns a true value when the function is ...
0
votes
2answers
68 views

Unit Testing: Specific testing & Flow of Control

I am quite new to unit testing and testing in general. I am developing with phpUnit, but as my question is more general / a design question, the actual environment shouldn't be of too much importance. ...
0
votes
1answer
385 views

Atxmega USART flow control

I'm having some troubles with USART flow control on the Atxmega256. I'm communicating with a modem which uses RTS/CTS for flow control. Once the modem sets CTS to low, I want to stop sending data ...
0
votes
1answer
61 views

Controlling flow in ASP.NET with return;, don't render the rest of the page

this question should be fairly basic. I want to control the flow of an ASP.NET page -- if a certain condition is met, I want to write out an error message and stop drawing the page. However, I also ...
0
votes
3answers
647 views

Stop execution of a script called with execfile

Is it possible to break the execution of a Python script called with the execfile function without using an if/else statement? I've tried exit(), but it doesn't allow main.py to finish. # main.py ...
0
votes
3answers
198 views

Can XON and XOFF be equal?

Can the application use set same char in the XON and XOFF? If yes, how my device driver should handle this situation
0
votes
1answer
98 views

What is a good local heuristic for dynamic discrete node flow control?

Suppose you have a set of nodes. Some nodes are producers, some are consumers, and some are routers. Each node has a maximum throughput which defines the maximum number of units it can accept per day, ...