2
votes
1answer
10 views
Execution Priority in custom Attributes in asp.net mvc
I have two custom attributes in my asp.net mvc(C#) application.
[CustAttribute1()]
[CustAttribute2()]
When i use those attributes to my actions, which will get execute first?
[ …
4
votes
8answers
204 views
Is it OK for a process to be CPU intensive for a prolonged period of time?
The case:
A scheduled task running on Windows.
The program's job is to extract some information from text documents. It uses a lot of regular expressions to do this. The program …
2
votes
3answers
97 views
What is the ‘realtime’ setting for, for process priority?
From what I've read in the past, you're encouraged not to change the priority of your windows applications programmatically, and if you do never to realtime. Could anyone clear up …
5
votes
3answers
137 views
Do Linux JVMs actually implement Thread priorities?
Wrote a quick Java proggy to spawn 10 threads with each priority and calculate pi (4*atan(1) method) with BigDecimals 500,000 times each, join on each thread and report the elapsed …
0
votes
1answer
155 views
Changing a C# thread’s priority at runtime when only the name is known
Hi,
I'm using a third party dll that's creating an AboveNormal priority thread and I'm wondering it it's possible to change the thread's priority. The only thing I know about this …
0
votes
2answers
227 views
Setting Print Queue Priority in Windows
I have some code that sends a text file to a printer as follows:
File.Copy(outputFile, "\\" & printServer & "\" & printer)
Is there a way I can specify the priority …
5
votes
2answers
367 views
Setting thread priority in Linux with Boost
The Boost Libraries don't seem to have a device for setting a thread's priority. Would this be the best code to use on Linux or is there a better method?
boost::thread myThread( M …
2
votes
1answer
219 views
Boost Priority pool sample?
Hi,
I am working on a Boost thread pool.
I have a structure like this:
class SimThreadPool
{
static SimThreadPool* getInstance();
boost::threadpool::prio_pool& getTh …
0
votes
2answers
73 views
How do I start a process with idle priority in .Net
I'm using System.Diagnostics.ProcessStartInfo to set up the parameters for launching a process from a .Net program. Once the the process is started, I can use
myProcess.PriorityC …
0
votes
2answers
148 views
making an exe low priority
Hi,
how do i run a .exe as low priority? i know i can go to task manager and change the priority setting there manually, but is there a way that i can launch the .exe from a .bat …
0
votes
1answer
40 views
how to give a Field more priority in nutch?
Suppose the Field is called "x",
so that when searched,those with Field "x" value matching the query is displayed first,
together with those whose content matches the query?
Cur …
0
votes
2answers
109 views
Retlang input prioritization
What is the preferred way, if any, to handle
channel input in a prioritized fashion? Is there anything equivalent
to Scala's "reactWithin(0) { ... case TIMEOUT }" construct?
0
votes
2answers
97 views
Thread portability across Android Platforms
I understand that if you specify thread priorities other than the default in Java then it makes the program platform specific. If you were to create threads for an android applica …
0
votes
1answer
268 views
Counting items of each priority level in an IBM MQ Series Queue
I have an IBM MQ series queue (running on Windows) containing many items of varying priority.
I currently get a total depth count using mqQueue.CurrentDepth but I'd like to get a …
1
vote
4answers
140 views
CSS class priorities
Hi All,
I have a question about the priority of CSS classes after encountering a problem today. The situation is as follows:
I have an unordered list which has a class associate …
