Tagged Questions
A task is a concurrent thread of execution in an Ada program. Tasks correspond to Threads in Java.
48
votes
2answers
7k views
Do rails rake tasks provide access to ActiveRecord models?
I am trying to create a custom rake task, but it seems I dont have access to my models. I thought this was something implicitly included with rails task.
I have the following code in ...
23
votes
2answers
670 views
How do Google App Engine Task Queues work?
I'm confused about Task execution using queues. I've read the documentation and I thought I understood bucket_size and rate, but when I send 20 Tasks to a queue set to 5/h, size 5, all 20 Tasks ...
18
votes
1answer
1k views
Task continuation on UI thread
Is there a 'standard' way to specify that a task continuation should run on the thread from which the initial task was created?
Currently I have the code below - it is working but keeping track of ...
14
votes
2answers
2k views
How to create an async method in C# 4 according to the best practices?
Consider the following code snippet:
public static Task<string> FetchAsync()
{
string url = "http://www.example.com", message = "Hello World!";
var request = ...
13
votes
3answers
645 views
Activity stack ordering problem when launching application from Android app installer and from Home screen
For testing purposes only, I am allowing my app APK to be downloaded and installed via a URL. Once downloaded on the phone, it can be launched with the Android app installer which gives the user an ...
13
votes
9answers
8k views
Run PHP Task Asynchronously
I work on a somewhat large web application, and the backend is mostly in PHP. There are several places in the code where I need to complete some task, but I don't want to make the user wait for the ...
12
votes
5answers
4k views
How do I enable TODO/FIXME/XXX task tags in Eclipse?
In all my years of using Eclipse, I never knew until now that TODO / FIXME / XXX comment tags are supposed to appear in the task list. Apparently this is something that is disabled by default because ...
11
votes
2answers
437 views
How do task killers work?
The usefullness of "task killer" apps is debated, but I'm wondering: how do they actually work? How is it possible to kill particular process?
Is there an API for this, and if so what does it ...
11
votes
4answers
12k views
Timer & TimerTask versus Thread + sleep in Java
I found similar questions asked here but there weren't answers to my satisfaction. So rephrasing the question again-
I have a task that needs to be done on a periodic basis (say 1 minute intervals). ...
11
votes
7answers
11k views
What is the best way to seed a database in Rails?
I have a rake task that populates some initial data in my rails app. For example, countries, states, mobile carriers, etc.
The way I have it set up now, is I have a bunch of create statements in ...
10
votes
2answers
3k views
.NET 4 Task Class Tutorial
.NET 4 has a Class - Task.
It's pretty interesting and I would like to start using it. For example, I would like to create a very simple Task-based files downloader, with the ability to cancel with ...
10
votes
5answers
4k views
C# - Get list of open tasks
I'm trying to find a way to get the open tasks in C#. I've been searching on google and can only find how to get a list of the processes. I want the only the tasks that would show up on the taskbar.
...
9
votes
4answers
381 views
Algorithm for fairly assigning tasks to workers based on skills
(Before anyone asks, this is not homework.)
I have a set of workers with interests, i.e.:
Bob: Java, XML, Ruby
Susan: Java, HTML, Python
Fred: Python, Ruby
Sam: Java, Ruby
etc.
(There are ...
9
votes
3answers
2k views
how to interpret windows task manager?
I run Windows 7 RC1, which uses the same WTM from Vista. When i look at the processes, there some columns I'm not sure what the differences are:
Memory - working set
Memory - private working set
...
8
votes
1answer
140 views
Task cancellation best practices
Lets say I have a processor who's job is to persist files back to the disk. This is running as a Task while observing a BlockingCollection<T> for files to process.
When the task gets cancelled ...
8
votes
4answers
165 views
Wait task for x amount of time and report progress
I need a better design for sleeping Task than Thread.Sleep, I'm using the Task class.
In my wpf app i run a Task, this task runs another couple of tasks, each of this tasks first login to and ...
8
votes
6answers
298 views
.NET: Why *not* change the priority of a ThreadPool (or Task) thread?
There are many places across the web and stackoverflow where one is discouraged from changing the priority of a ThreadPool thread or TPL Task. In particular:
"You have no control over the state ...
8
votes
3answers
1k views
TaskFactory.StartNew versus ThreadPool.QueueUserWorkItem
Apparently the TaskFactory.StartNew method in .NET 4.0 is intended as a replacement for ThreadPool.QueueUserWorkItem (according to this post, anyway). My question is simple: does anyone know why?
...
8
votes
13answers
1k views
Does anyone have any ideas for an assignment in game programming?
Much like the author of Give me an assignment in C, I'm looking to learn game programming and I learn best by doing, but I don't have any good ideas for games to program which will teach me the skills ...
8
votes
6answers
648 views
Continuous Integration: how do you tie back your builds to requirements/tasks/bugs?
How do you answer the following questions from managers, testers and other people in your team:
In what build is bug #829 fixed? What tasks have been completed in our current test build?
So simply ...
7
votes
2answers
688 views
TODO tasks list in Flash Builder
Does Flash Builder support tasks list?
I'm testing Flash Builder for PHP, and I can see my // TODO in PHP code but not in AS or MXML.
I found this plugin:
...
7
votes
6answers
2k views
How do I abort/cancel TPL Tasks?
In a thread, I create some System.Threading.Task and start each task.
When I do a .Abort() to kill the thread, the tasks are not aborted.
How can I transmit the .Abort() to my tasks ?
7
votes
2answers
956 views
Cooperative multitasking using TPL
We are porting modeling application, which uses IronPython scripts for custom actions in modeling process. The existing application executes each Python script in separate thread and uses cooperative ...
7
votes
1answer
5k views
Ant scp task not working, even with jsch on ant/lib
I need to copy a war file via scp.
I have added the jsch-0.1.42.jar to $ANT_HOME/lib but I'm still getting this error:
Cause: the class
org.apache.tools.ant.taskdefs.optional.ssh.Scp
was not ...
7
votes
25answers
2k views
How you manage your daily tasks as a programmer?
What you use to manage your daily tasks as a programmer?
I use Outlook built in Tasks Manager.
I track them by emails.
Use third party software for task management.
I remember my all tasks.
Or ...
6
votes
4answers
106 views
Task and exception silence
Why exceptions thrown within a task are silent exception and you never know if a certain exception has been thrown
try
{
Task task = new Task(
() => {
throw null;
}
...
6
votes
2answers
179 views
What should I do to use Task<T> in .NET 2.0?
.NET 4.0 has the TPL which contains the nice Task class to encapsulate aynchronous programming models. I'm working on an app that must be .NET 2.0, but I want to avoid rewriting Task. Any ...
6
votes
4answers
384 views
Task synchronization without a UI thread
In the code below I want to syncronize the reporting of the results of a list of tasks. This is working now because task.Result blocks until the task completes. However, task id = 3 takes a long time ...
6
votes
1answer
442 views
Celery task that runs more tasks
I am using celerybeat to kick off a primary task that kicks of a number of secondary tasks. I have both tasks written already.
Is there a way to easily do this? Does Celery allow for tasks to be run ...
6
votes
1answer
258 views
Do I need to dispose of a Task?
I am having fun working with System.Threading.Tasks. Many of the code samples I see, however, look something like so:
Dim lcTask = Task.Factory.StartNew(Sub() DoSomeWork())
Dim lcTaskLong = ...
6
votes
2answers
114 views
where does kernel store processes which are not running?
everyone I have some question about tasks in Linux, I know that all tasks which are currently at the state TASK_RUNNING are in data structure called runqueue, but what about the tasks which are ...
6
votes
1answer
439 views
Adding a Priority TODO comment in Visual Studio?
Add a comment such as this:
// TODO: Refactor this code
creates a task in the Task List that I can view etc. There is a column labeled ! that lets you sort these tasks by priority.
How can I set a ...
6
votes
4answers
911 views
Difference Between a Task Killer Killing an App and the Android OS Killing an App
Is there any difference between what happens when you use a Task Killer App to kill an app vs. what happens when the Android OS kills an app due to scarce resources?
The Android SDK says that the ...
6
votes
3answers
3k views
where the heck is org.hibernate.tool.ant.HibernateToolTask?
Where the heck do I get org.hibernate.tool.ant.HibernateToolTask ? I can't seem to find a .jar file that contains it.
5
votes
4answers
180 views
Clearing stack including activities in different tasks
I have a main activity A. There are two scenarios
1) A launches B.
B has launchmode singleTask and is launched with FLAG_ACTIVITY_NEW_TASK.
now I have a menu option in B which performs a ...
5
votes
3answers
214 views
How do I abort a .NET task?
Here's the situation, I am writing the framework for a code war contest. As the code runs, for each turn, it calls a method in the library provided by each contestant. The rules of the contest is the ...
5
votes
3answers
311 views
Why do we need ContinueWith method?
Why do we need Task.ContinueWith() method. Cannot we just write that "continuation code" inside Task body?
5
votes
2answers
163 views
Throwing methods into a Task to avoid blocking the asp.net thread
I'm wondering if the following code has any gotcha's that I'm not aware of when running on a webserver. Reading through the excellent series http://reedcopsey.com/series/parallelism-in-net4/ I am ...
5
votes
2answers
930 views
.net 4.0 cancel a task (TPL)
I have a task which i need to cancel if the wait time is over. For instance
var t = Task.Factory.StartNew(() =>
{
Thread.Sleep(5000) // some long running task
"do something"
});
...
5
votes
2answers
804 views
WebBrowserTask fails
The following code works sometimes and most of the time not:
WebBrowserTask wbt = new WebBrowserTask();
wbt.URL = url;
wbt.Show();
On both the emulator and a real device (HTC HD7). ...
5
votes
3answers
310 views
How can I capture all of the python log records generated during the execution of a series of Celery tasks?
I want to convert my homegrown task queue system into a Celery-based task queue, but one feature I currently have is causing me some distress.
Right now, my task queue operates very coarsely; I run ...
5
votes
2answers
2k views
TaskCreationOptions.LongRunning option and ThreadPool
TPL uses Task Schedulers to coordinate tasks. According to official document, default task scheduler uses Thread Pool, but if TaskCreationOptions.LongRunning option is presented then it will create a ...
5
votes
2answers
272 views
Can .NET Task instances go out of scope during run?
If I have the following block of code in a method (using .NET 4 and the Task Parallel Library):
var task = new Task(() => DoSomethingLongRunning());
task.Start();
and the method returns, will ...
5
votes
1answer
937 views
Why is Rake not able to invoke multiple tasks consecutively?
I have a Rake task which I have simplified below.
I'm using Ruby 1.9 on Windows.
Perhaps you would like to guess the outcome of calling the Rake task "list_all_levels" below? It should be:
"Hello ...
4
votes
1answer
88 views
Task vs AsParallel()
On page 33 of Stephen Toub's book
http://www.microsoft.com/download/en/details.aspx?id=19222
There is the code
var pings = from addr in addrs.AsParallel().WithDegreeOfParallelism(16)
select new ...
4
votes
1answer
65 views
Continue Task after all tasks finish
In some class I want to load 2 collection asynchronously with Task and stop busyindicator
I try Something like this
var uiScheduler = TaskScheduler.FromCurrentSynchronizationContext();
...
4
votes
1answer
34 views
Does JIRA allow to check yesterdays tasks?
I need to check which tasks were updated/created yesterday, the past week, the past month.
I would like to always use a web interface (only) where I could use a select calendar, insert dates, etc.
Is ...
4
votes
1answer
90 views
D taskpool wait untill all tasks are done
This is in relation to my previous question: D concurrent writing to buffer
Say you have a piece of code that consists of 2 consecutive code blocks A and B, where B depends on A. This is very common ...
4
votes
1answer
145 views
Periodic Task in linux kernel module
Currently I am developing GPIO kernel module for friendlyarm linux 2.6.32.2 (mini2440). I am from electronics background and new to Linux.
The kernel module loaded at start-up and the related device ...
4
votes
7answers
101 views
Freezing an Ada task
How can I freeze a task?
I mean, if I have a task
task body My_Task is
begin
accept Start;
loop
Put ("1");
Put ("2");
Put ("3");
...
Put ("n");
end loop;
end My_Task;
is ...