0
votes
5answers
65 views
What is .tpl files? web design
Hi guys!
A man wants me to redesign a site run in PHP (Video CMS). But when I asked him to send me the source he has given me .tpl files instead of .php. There is some code inside them:
{include …
0
votes
4answers
105 views
Using a hashtable inside a Parallel.ForEach??
I have a Parallel.ForEach loop running an intensive operation inside the body.
The operation can use a Hashtable to store the values, and can be reused for other consecutive loop items. I add to the …
3
votes
5answers
401 views
Lock free constructs in .net
I am new to .net and would like to know whether .net has the java equivalent of AtomicInteger, ConcurrentLinkedQueue, etc?
I did a bit of search and couldnt come up with anything.
The lock free …
0
votes
1answer
42 views
Is there a way to tell which Tasks are currently running in Task Parallel Library
I can't see a way to see which tasks are running. There is the Task.Current property, but what if there are multiple tasks running? Is there a way to get this kind of information?
Alternately, is …
0
votes
2answers
25 views
What’s the difference of *.tpl and *.html in smarty?
I didn't find the document about this.
4
votes
1answer
77 views
Support of progress reporting and incremental results in .NET 4.0 “Task Parallel Library”
I know that Task Parallel Library is still in Beta and there are likely to be less resources available but from whatever I have read, library gives very special treatment to task scheduling, exception …
0
votes
6answers
530 views
Send a structure through a socket using tpl for serialization using c
After reading a few related questions I've decided to use the tpl library to serialize my structures in order to send and receive them through sockets. I'm having trouble understanding how to send and …
1
vote
2answers
45 views
Inconsistent results when executing and spawning child tasks
I have some simple code in which the main Thread is creating a new Task. The task in turn spawns multiple child tasks.
The main Thread does a 'wait' on the parent Task. I'm observing that I don't get …
1
vote
1answer
398 views
Microsoft’s CCR vs Task Parallel Library
Microsoft has at least two different approches to improved support for concurrent operations.
1) Is the Concurrency Coordination Runtime (CCR) which is part of Microsoft Robotics Studio and CCR & …
