The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
31 views

Scheme continuation unexpeded behavior

Here is my code. As I call continuation twice, I expect "world" be displayed twice. But it output only once. What am I missing? (define call-with-current-continuation call/cc) (define (repeat arg) ...
0
votes
0answers
59 views

How to use akka dataflow in maven

I encountered a problem when using data flow . The maven can not compile if I enable the continuation in maven scala plugin config. After I enable the continuation in maven, the compile starts to ...
1
vote
1answer
70 views

Jetty - Detect disconnected client (Continuations)

I'm using Jetty with Continuations to implement long polling, but I don't see a way to detect a client disconnecting. I understand that in the time between the first run (creation of the ...
0
votes
1answer
229 views

Transactions and Continuation tokens in Windows Azure Storage Tables

How many transactions are fired for retrieving 1200 entities in Azure Storage Tables, keeping continuation Tokens in mind. I have read that " Windows Azure Tables returns up to a maximum of 1000 ...
9
votes
1answer
145 views

What is the proper way to propagate exceptions in continuation chains?

What is the proper way to propagate exceptions in continuation chains? t.ContinueWith(t2 => { if(t2.Exception != null) throw t2.Exception; /* Other async code. */ }) ...
0
votes
2answers
77 views

PHP nested loop echos must not break into new line

Here is my code segment: for($i=0;$i<23;$i++){ echo "<div id=slotshead></div>"; for($j=0;$j<30;$j++) { echo " <div id=slots></div>"; } echo ...
0
votes
0answers
8 views

Is there a way of knowing if the curser is on a continaution page in Word with vba

I have to add a side table to a page in a report over a large righthand margin. This is to put pictures and quotes into that relate to the main text column. Each section starts higher on the page than ...
3
votes
1answer
233 views

Scheme- using continuations

So I THINK I understand how continuations basically work in Scheme, but I'm having trouble figuring out how to use it instead of recursion. We are given working code for make-matcher (just basic ...
3
votes
1answer
98 views

Scheme: how does a nested call/cc work for a coroutine?

I am looking at the following example for a coroutine from http://community.schemewiki.org/?call-with-current-continuation: (define (hefty-computation do-other-stuff) (let loop ((n 5)) ...
2
votes
5answers
96 views

How to limit lenght of a complicated line in Python?

I'm formatting my code according to PEP8, but I have a little issue; this is it: print ("DB Updated: " + datetime.datetime.fromtimestamp(int(stats_dict["db_update"])).strftime('%a %b %d %H:%M:%S ...
2
votes
4answers
807 views

Objective C - how to programmatically stop execution for debugging, while allowing continuation?

I have had success getting my debug builds to stop execution when a condition is programmatically specified, using the standard NSAssert(condition_which_should_evaluate_true, @"error message") ...
3
votes
2answers
293 views

How to combine state and continuation monads in F#

I'm trying to sum a tree using the Task Parallel Library where child tasks are spawned only until the tree is traversed until a certain depth, and otherwise it sums the remaining child nodes using ...
6
votes
2answers
549 views

C# await vs continuations: not quite the same?

After reading Eric Lippert’s answer I got the impression that await and call/cc are pretty much two sides of the same coin, with at most syntactic differences. However, upon trying to actually ...
0
votes
0answers
189 views

Jetty component doesn't free a worker thread after suspending [closed]

I found the problem with the jetty component in the camel 2.9.0. The jetty server doesn't free a worker thread. So, I have the following configuration: ...
3
votes
1answer
406 views

SML - collecting words in a trie using continuations

I have a datatype trie = Node of char * (trie ref) list | Empty And I want to collect all the words in the trie, using these two mutually recursive functions: words_in_trie: trie -> (char list ...
2
votes
1answer
123 views

Continuation when one or more tasks in an array is cancelled or fails?

If I have an array of tasks, Task[]. How can I write a continuation that only runs when one or more tasks in the array fails(or is cancelled)?
1
vote
3answers
207 views

Best practice for if statements that exceed the 10 line continuation limit in vb6

ex. if condition or _ condition or _ condition or _ condition or _ condition or _ condition or _ condition or _ condition or _ condition or _ condition or then do something end if Say I ...
0
votes
5answers
3k views

syntaxerror: “unexpected character after line continuation character in python” math

I am having problems with this Python program I am creating to do maths, working out and so solutions but I'm getting the syntaxerror: "unexpected character after line continuation character in ...
0
votes
1answer
330 views

Action Chaining Not Redirecting After Controller.await(int millis)

I'm not sure if this isn't working as intended of it it's just me getting confused. What I would like to do is to asynchronously delay an action, and await(int millis) and I seem to be able to become ...
9
votes
4answers
11k views

Bash continuation lines

How do you use bash continuation lines? I realize that you can do this: echo "continuation \ lines" >continuation lines However, if you have indented code, it doesn't work out so well... ...
5
votes
0answers
288 views

Why in Ruby 1.9 Continuations are evil? [closed]

I am relative new in Ruby world. And I don't know, what to think. In 'The Ruby Programming Language' I read I shouldn't use Continuations in new code and use Fibers instead. I found this presentation ...
0
votes
1answer
341 views

Why Lua doesn't support full continuation though it support tail-call-optimization? [duplicate]

Possible Duplicate: call/cc in Lua - Possible? As far as I know, full continuation (call/cc) can be implemented efficiently with only TCO (tail-call-optimization). Current Lua 5.1 & VM ...