A task is a concurrent thread of execution in an Ada program. Tasks correspond to Threads in Java.
1
vote
0answers
15 views
grunt-contrib-requirejs - need a little advice
I have a project with the following structure:
project
|──css
|──img
|──js
|──app
|──collections
|──models
|──views
|──vendor
|──jquery
...
0
votes
2answers
34 views
Silent exceptions in Task.Factory.StartNew when using a long running background consumer task?
This notifies of an unhandled exception:
new Thread(_ => { throw new Exception(); }).Start();
This does not (at least until you wait/retrieve the result):
Task.Factory.StartNew(() =>
...
0
votes
1answer
19 views
How to execute a Rails “Rake Task”
what's up?
My friend created a rake task to update our data in the database (because we have db changes). Following is the task:
namespace :db do
task :update_database => :environment do
...
-1
votes
1answer
19 views
gruntfile.js - grunt.registerTask
Not sure if I'm doing it right...
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json') ,
connect: {
server: {
options: {
...
0
votes
1answer
18 views
Advanced task killer dont' kill correctly my app
I have create an Android application (functional).
My problem is when people use advanced task killer (what is useless), all my variables are wiped but the application is not to kill completely, it ...
2
votes
1answer
59 views
Convert Java Object (that is really a Scala Map) to Scala Map
Have a compile time task I need to run using reflection (bother caller and callee are Scala source files), but am getting a runtime error:
java.lang.ClassCastException:
...
0
votes
1answer
40 views
Running Laravel Task at specific time
I've seen some similar questions at SO but none of then have answered me. I had never heard of CRON before and I'm new to Laravel. What I need is to run a Task once a week to perform some actions on ...
2
votes
2answers
34 views
Async and asynchronous methods clarification?
AFAIK - ( and I read a lot about it), asynchronous methods (not asynchronous delegates !) exists to solve the "thread is blocked" problem when dealing with I/O operations like : reading a file or ...
0
votes
0answers
9 views
Failed to delete task during uninstallation since access denied
all, I am writing a MSI through Wix2.0,
I use custom action to call dll function to create/delete windows scheduled task,
the task will run as SYSTEM. It works well on XP, but on Win7,
I can ...
0
votes
1answer
27 views
How can I make an .exe python program in windows works like a daemon? [duplicate]
I have a python windows console application in a .exe packaged by cx_freeze. It works fine when called by Windows Command Line. What I want to do now is simple: Get this .exe and turn it a daemon ...
2
votes
2answers
59 views
Main differences between threading with shared memory and MPI?
although I have been playing with pthreads, OpenMP, intel TBB, and threading in general for a while I still don't understand what is the main difference between a message passing interface ...
0
votes
1answer
52 views
Timer is delayed when many Tasks are running in C#
I'm using a Timer to calculate an action progress, but if there are many running tasks, the timer is delayed.
Below is my timer class:
public class TimingAction
{
private const int ...
0
votes
1answer
24 views
Calling a REST Service over a specific number of time simulatneously
I have searched about this over internet but I wanted to learn about possible ways of achieving my task. What I am trying to do is that in my C# application I call a REST Service to get some data. I ...
1
vote
2answers
66 views
Task repeating?
Previously, when making a looping task it would run perfectly the first time and fall apart because of the timing problems, such as the functions of one individual task would start running faster than ...
0
votes
1answer
29 views
What's the best way to download multiple non-http downloads on android
I'm working on an p2p download apps and my goal is to have the best performance that i can get to download torrent files. I know that these download methods exist:
Downloadmanager : only for ...
0
votes
1answer
11 views
Ant can't find a executable in the Windows path
I got a simple ant target :
<target name="doxygen">
<exec executable="doxygen" dir="${basedir}/doxygen">
<arg value="Doxyfile" />
</exec>
</target>
I'm ...
-2
votes
1answer
18 views
Explanation of .Net 4 Tasks with Callback Parallel Programming
If I have a system where it uses tasks that are independent of each other; I want to run multiple tasks at once(I do not want the second task to run when the first to finish). Is there a way to do ...
0
votes
1answer
32 views
Running multiple Tasks from button click (UI thread) - how to know if they all succeeded or some failed?
I have WPF application where in a button click handler I want to start multiple tasks (where each may perform a long running operation).
I want to report to the user whether all tasks succeeded, or ...
-1
votes
0answers
20 views
spring @async <task:annotation-driven />
I posted something similar earlier but I mistakenly mentioned mvc:annotation-driven
The mvc:annotation-driven is working
But the task:annotation-driven is giving the error below.
The matching ...
0
votes
0answers
18 views
use of spring @async <mvc:annotation-driven />
I'm using spring 3.1
When I try to add the bean
I get an error in eclipse saying:
The matching wildcard is strict, but no declaration can be found for element 'task:annotation-driven'.
...
2
votes
1answer
19 views
How to call a task in a helper?
I want to create a button in my application to call a task.
How can I do this with a link_to() in my template for example ?
In routing.yml it is possible to create a route to call the task ?
-1
votes
0answers
7 views
Start All App Pools Using Task Scheduler [closed]
I have a bunch of App Pools in IIS which need to get started when the server is started. My task is getting scheduled by a batch script which schedules it as so:
schtasks /Create /RL HIGHEST /RU ...
0
votes
2answers
36 views
how to start multiple downloads in android
i'm working on an android torrent app and I need to be able to download multiple torrents at the same time. i've seen other application doing it. I am able to download over 10 torrents at the same ...
0
votes
0answers
33 views
SBT apply Task after Compile
I am able to automatically execute a task before compilation with:
compile in Compile <<= (compile in Compile).dependsOn(myTask)
How do I do the same but after compile?
I know I can do:
...
-2
votes
0answers
257 views
How do I use performFetchWithCompletionHandler: from iOS 7 SDK? [closed]
so I just updated my XCode to version 5.0 and am now able to code the new features you can find in the What's new in iOS 7 section.
Now I found a nice little feature called Multitasking Enhancements. ...
1
vote
1answer
35 views
TaskFactory.Startnew, UI hangs when Long running Task is processing
I'm trying to run an asynchronous task using TaskFactory (Framework 4) with LongRunning parameter,
I show a loading panel but the ui hangs and the dynamic gif is not rendering properly.
I supposed ...
1
vote
1answer
45 views
Dispatcher not dispatching
I wanted to test something so I built a small view & viewmodel with a Button and a ListBox.
When I click the button I run the RunCommand as in the code below. I don't understand why the Dispatcher ...
1
vote
2answers
37 views
Cancel only the inner Task when awaiting an async function?
I am trying to extend a framework, where our users of the framework can use C# as a language with non-blocking functions (aka "coroutines"). My first design used yield return statements and an ...
0
votes
1answer
22 views
SBT Task Chicken and the Egg: Reflection and Scala 2.10
Have an application split into sub projects in my Build.scala.
I need to run a Task on Compile against a set of sub project classes; since I have no way to statically import sub project classes ...
1
vote
2answers
35 views
Why is my task in Application_Start() being stopped/cancelled/terminated?
I have the following code in my ASP.NET MVC 4 Web Application:
Global.asax.cs
protected void Application_Start()
{
Task.Factory.StartNew(
() =>
{
while ...
0
votes
0answers
36 views
.NET 4 Tasks exit method only when finish [closed]
GetInternalFooString is a method that takes a while, I want to call it as a task for not locking the UI, and return its value only after it ends.
The problem is that the code does not compile (not ...
-3
votes
0answers
31 views
android development for dummies 2nd edition task reminder [closed]
Hello everyone I'm new here.
Recently I had imported the source code for the task reminder from android for dummies second edition, everything looks fine but when I try to run the apps it shown me ...
2
votes
0answers
32 views
How to save a dump, including local variables, after an unhandled exception occurs in TPL?
My idea of handling exceptions is as follows.
When an unhandled exception occurs, I want to save a dump with full memory, including local variables available at the line where the exception happened. ...
0
votes
2answers
37 views
A windows service for tasks [duplicate]
Is there some sort of service in the windows operating system that tracks all processes that have run on a computer throughout the day? Task manager tells you what is currently happening, but I want ...
0
votes
2answers
67 views
ADA: multiple tasks
I have a problem in Ada concurrent programming. I have to write a simple program in Ada that creates N of tasks of the same type, where N is the input from keyboard. The problem is that I have to know ...
2
votes
3answers
90 views
Returning a Task of type Task<Dictionary<string, string>>
I've been trying to figure out how to return data in type Task other than an int like this for example, Task<Dictionary<string, string>>.
All the examples I seem to find all show ...
1
vote
2answers
66 views
Parallel.ForEach not setting all values in loop
I am querying a sql data base for some employees.
When i receive these employees I and looping each one using the Parallel.ForEach.
The only reason I'm looping he employees that was retrieved from ...
2
votes
2answers
62 views
what is the .NET equivalent of Java's ForkJoinTask<V>?
"Abstract base class for tasks that run within a ForkJoinPool. A ForkJoinTask is a thread-like entity that is much lighter weight than a normal thread. Huge numbers of tasks and subtasks may be hosted ...
-3
votes
1answer
53 views
Task WaitAll not working properly in c# [closed]
I am using System.Threading.Tasks
Here is sample code ::
Case 1::
List<string> testTerms = new List<string>();
testTerms.Add("test1");
...
1
vote
2answers
34 views
Cannot cancel a task via CancellationTokenSource.Cancel()
I am having trouble stopping a Task. Firstly, I just started using Tasks. Previously, I had been using delegate.BeginInvoke() to run things in background, but this time I need to stop background ...
0
votes
0answers
24 views
How to support the runtime settings ThrowUnobservedTaskExceptions in unit tests (Visual Studio)?
How can I activate the runtime settings ThrowUnobservedTaskExceptions in unit tests (Visual Studio 2012 unit test environment)?
I have tried to add an App.config file in the unit test project with:
...
5
votes
2answers
87 views
What is the equivalent of a C# Task in python
I need to translate my c# code to python. I have a Task in c# and need to translate it to python. Here is a piece of the code:
List<Task> t = new List<Task>();
for(int i = 0; i < ...
0
votes
1answer
15 views
Task StartNew Action in C++/CLI
In C++/CLI is there any way to do the following? (I think answer is no because of no Action support?)
public ref class MyClass {
public:
void TaskMethod();
void Start();
}
void ...
0
votes
0answers
18 views
Link Email to Google Task
I am creating tasks from email similar to this. In addition I want to link the corresponding message, just like it happens when you create a task from email manually.
This example creates as task ...
0
votes
0answers
25 views
Transaction with WCF Async calls
I am trying to create a method as shown bellow.
private async void SaveAllData(Data1 data1, Data2 data2)
{
using (var transaction = new TransactionScope())
{
var task1 = ...
1
vote
1answer
23 views
rallydev - query for custom grid - how to show tasks where work product is tagged
I am trying to create a query for a custom grid. I want to show all tasks where the work product (user story the tasks belong to) is tagged with a specific tag.
For example:
US101 - Build a house ...
0
votes
1answer
26 views
Tasks: exceptions and cancelation
I need to do a long running task. I've done this by executing a Task while there's a loading box on the UI. When an exception is thrown, I want to stop the task and show a msgbox to the user. If ...
0
votes
0answers
48 views
Is there a way to load the processes description when creating a task manager in C#?
I have made a task manager which successfully kills processes. Is it possible to also load the description of the process out of the task manager.
For example, my task manager will say the process ...
2
votes
1answer
38 views
get number of pending tasks for a specific user
In one of my applications i want to limit users to make a only a specific number of document conversion each calendar month and want to notify them of the conversions they've made and number of ...
0
votes
1answer
38 views
Back to my application when call direction from google map in Android
I have an application get direction via google map. Example Activity A call google map:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(myuri));
...


