Questions tagged [continuation]

53 questions
0
votes
2 answers

Commenting with line continuation

I have this block of code I want to comment but inline comments don't work. I'm not sure what PEP8 guideline applies here. Advice? if next_qi < qi + lcs_len \ # If the next qLCS overlaps and next_ri < ri + lcs_len \ # If the next…
0
votes
1 answer

F# tail call optimization issues on Mono

I have an issues concerning the F# on mono. Im doing this course in functional programming at my university. In the course we are using F#, and I uses Xamarin as my editor. The thing is that we had a lesson on tail recursion, as a tool for getting…
Andreas
  • 3
  • 2
0
votes
1 answer

Sinatra error - continuation called across threads

I am completely new to Ruby so my question may have quite a simple answer. However, I couldn't find an answer on stackoverflow. I have the following very simple Sinatra app: # myapp.rb require 'rubygems' require 'sinatra' require…
0
votes
1 answer

Do C# await continuations create new threads?

As the question says. I'd like to know if simply calling await in code has the potential to create a new thread. Let's assume it's during a console app.
Alexander Trauzzi
  • 7,277
  • 13
  • 68
  • 112
0
votes
1 answer

Jetty, DefaultServlet, BlockingCallback and TimeoutException issue

I am running an online application powered by Jetty 9.1.0.RC1 (standalone distribution). My log file gets filled up by the following issues occuring randomly when serving static content (.js, .css, .png files etc.): 2013-11-25…
0
votes
1 answer

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 entities in a single request and returns a…
0
votes
2 answers

PHP nested loop echos must not break into new line

Here is my code segment: for($i=0;$i<23;$i++){ echo "
"; for($j=0;$j<30;$j++) { echo "
"; } echo '
'; } But, it doesn't work. I want the two echo statements inside the loop to be…
ZameerMoh
  • 1,149
  • 1
  • 17
  • 26
-2
votes
1 answer

Backgroundworker for wpf C#

I need to execute two methods simultaneously, only after completion of this next thing should continue, the problem i have a UI which throws me error if use task (Its a WPF appliation). Task Data= Task.Factory.StartNew(() => Readdetails()); Task…
Usha
  • 1
1 2 3
4