Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
2answers
427 views

Safe execution of untrusted Haskell code

I'm looking for a way to run an arbitrary Haskell code safely (or refuse to run unsafe code). Must have: module/function whitelist timeout on execution memory usage restriction Capabilities I ...
17
votes
5answers
4k views

Does sleep time count for execution time limit?

I have two questions concerning the sleep() function in PHP: Does the sleep time affect the maximum execution time limit of my PHP scripts? Sometimes, PHP shows the message "maximum execution time ...
15
votes
3answers
4k views

C# -Four Patterns in Asynchronous execution

I heard that there are four patterns in asynchronous execution . "There are four patterns in async delegate execution: Polling, Waiting for Completion, Completion Notification, and "Fire and Forget". ...
14
votes
1answer
232 views

Recent-ish changes to the Python execution model?

I just re-read the section on execution models in the 3rd edition of Learning Python (late 2007), and it felt fairly tentative. So, I looked at the same section in the 4th edition (late 2009) and was ...
14
votes
5answers
3k views

What happens when you run a program?

I would like to collect here what happens when you run an executable on Windows, Linux and OSX. In particular, I would like to understand exactly the order of the operations: my guess is that the ...
13
votes
4answers
3k views

How can I set the current line of execution in the eclipse java debugger

I want to force the current execution line to a specific line in the same function. All my old school debuggers had this feature, but I can't find it in eclipse. Is there a way to do it without ...
12
votes
6answers
2k views

Does php execution stop after a user leaves the page?

I want to run a relatively time consuming script based on some form input, but I'd rather not resort to cron, so I'm wondering if a php page requested through ajax will continue to execute until ...
10
votes
6answers
50k views

WPF Image Dynamically changing Image source during runtime

I have a window with a title on it. When the user selects a choice from a drop down list, the title image can change. The problem is when the image loads, it's a blurred, stretched, and pixelated. ...
9
votes
6answers
447 views

Best practice for an endless/ periodic execution of code in C#

Often in my Code I start threats wich basically look like this: void WatchForSomething() { while(true) { if(SomeCondition) { //Raise Event to handle Condition ...
9
votes
16answers
8k views

System.ExecutionEngineException Failure

I've been trying to find out more about this problem and I'm not having much luck. I keep reading that applications should not have this error come up and although that's all fine and dandy, it ...
8
votes
3answers
736 views

Php trapping maximun execution time error

Is there a way in PHP to trap the fatal error when the max execution time is reached and give the user a better message?
8
votes
6answers
4k views

Asynchronous Vs. Synchronous Execution, What does it really mean?

Asynchronous Vs. Synchronous Execution, What does it really mean?
6
votes
1answer
60 views

Stepwise description of file execution in Windows

What happens, at low-level (stepwise) when a program is executed in windows. In other words the processes that take place from clicking a file to actually reaching execution. Are you aware of any ...
6
votes
3answers
354 views

How to get a program's running time in haskell

Haskell gurus should be able to get this in a jiffy, I was very new to haskell and wondering how to go about doing that through system time functions (for a program or an executable) in haskell. I am ...
6
votes
6answers
334 views

Dissecting a line of (obfuscated?) Python

I was reading another question on Stack Overflow (Zen of Python), and I came across this line in Jaime Soriano's answer: import this "".join([c in this.d and this.d[c] or c for c in this.s]) ...
5
votes
3answers
399 views

Haskell function execution time

Is anywhere simple method to compute time of function execution in Haskell? Thank you.
5
votes
5answers
154 views

c# executing a string as code…is it worth the effort?

Here's the story so far: I'm doing a C# winforms application to facilitate specifying equipment for hire quotations. In it, I have a List<T> of ~1500 stock items. These items have a property ...
5
votes
2answers
26 views

Can the cache (or other variables) change during code execution?

This might just be a theoretical question but I haven't been able to find a satisfying answer to it. I'm using the cache on one of my sites which got me thinking about it's data and when and if it ...
5
votes
5answers
696 views

Code coverage (c++ code execution path)

Let's say I have this code: int function(bool b) { // execution path 1 int ret = 0; if(b) { // execution path 2 ret = 55; } else { // execution ...
5
votes
5answers
312 views

“Phased” execution of functions in javascript

This is my first post on stackoverflow, so please don't flame me too hard if I come across like a total nitwit or if I'm unable ot make myself perfectly clear. :-) Here's my problem: I'm trying to ...
5
votes
2answers
283 views

Performance penalty with executing x86 instructions stored in the data segment?

I have a simple program that first writes some native x86 instructions into a declared buffer, and then sets a function pointer to this buffer and makes a call. I'm noticing a severe performance ...
5
votes
6answers
2k views

How to get Hudson CI to execute a Powershell script?

I'm using Hudson version 1.324 for CI and have a couple of issues: Environment: - Windows Server 2008 - Powershell v1.0 - Hudson 1.324 running as a service - Hudson Powershell Plugin installed - ...
5
votes
5answers
850 views

How do I include a PHP script in Python?

I have a PHP script (news-generator.php) which, when I include it, grabs a bunch of news items and prints them. Right now, I'm using Python for my website (CGI). When I was using PHP, I used something ...
4
votes
1answer
61 views

How does this function self-executes?

I have the following code (which is the initialization of the facebook API), I don't understand why this snippet runs on-load without being called anywhere else in the code! The funny thing is that ...
4
votes
2answers
84 views

Limit No. of CPU in C

I was testing a c code on a physical and virtual machine and i need to limit the no. of cpu used during execution of c program. Is there a way to do this ?
4
votes
2answers
373 views

How can my C program check if it has execution permission on a given file?

Is there a way to determine if the process may execute a file without having to actually execute it (e.g. by calling execv(filepath, args) only to fail and discover that errno == EACCES)? I could ...
4
votes
8answers
170 views

displaying % completed while executing in C

I have a C program that is taking like 5 minutes to execute. So I was thinking if I can like show the percentage completed or any type of interaction for the user while executing, since a blinking ...
4
votes
5answers
252 views

Stopping Javascript execution on loaded page?

  There is some problem code in a website I don't have source access to. Upon loading the page, something goes wrong (in my version of Win and FF at least) such that ajax calls are made ...
4
votes
6answers
243 views

C#. Is this a valid conditional statement?

I have two methods, A and B. Only after the success of two the methods I have to insert into a database. So is this a valid conditional Statement in C#? if (A() && B()) { //insert into db ...
4
votes
5answers
693 views

convincing C# compiler that execution will stop after a member returns

I don't think this is currently possible or if it's even a good idea, but it's something I was thinking about just now. I use MSTest for unit testing my C# project. In one of my tests, I do the ...
4
votes
3answers
172 views

How are JavaScript files loaded and executed?

I don't often see talk or research on JavaScript file loading/executing order. I'm interested in sites explaining how JavaScript is being handled. In particular, if I have <script ...
4
votes
4answers
3k views

Avoid PHP execution time limit

I need to create a script in PHP language which performs permutation of numbers. But PHP has an execution time limit set to 60 seconds. How can I run the script so that if you need to run more than 60 ...
4
votes
3answers
754 views

Executing CPU/GPU instructions from managed code

Taking into account the execute disable bit what is the recommended way of executing instructions against a native processor from a high level managed environment such as VB.NET 2008 or C#. In ...
4
votes
6answers
5k views

How to force Sequential Javascript Execution?

Ive searched a lot of places for the answer to this seemingly simple problem, but Ive only found rather complicated answers involving classes, event handlers and callbacks (which seem to me to be a ...
4
votes
2answers
187 views

How to find out how much java code is really executed for a given use case in a program?

is it possible to hook up an agent or something to the jvm before starting up an application (or an appserver) and have a report showing how much of the code base in the classpath is actually executed ...
3
votes
2answers
73 views

Delaying an action for a period of time

I am currently working on a screensaver launcher, but I want to delay the activation of the screensaver for a period of time to ensure the mouse position is still in the position to activate it, to ...
3
votes
1answer
63 views

How to stop a JavaScript program that is being debugged in Chrome?

Ok, I've fired up my debugger in Chrome and I've placed a breakpoint just before an Ajax call to examine the variables on the stack. Hmmm, I notice that one of them is not right. At this point I'd ...
3
votes
1answer
80 views

Proper way to execute an executable file (.exe) in different situations

this sort of problem is bugging me already for a while, so I was curious how your approaches are to handle the following situation: Imagine I have two different eclipse projects in same workspace ...
3
votes
1answer
93 views

Python C API - Stopping Execution (and continuing it later)

1) I would like to use the profiling functions in the Python C API to catch the python interpreter when it returns from specific functions. 2) I would like to pause the python interpreter, send ...
3
votes
7answers
119 views

Handling errors and continuing execution in PHP script

I don't want to "die()" when it concerns only a small part of the script and I tried: $result = mysql_query($sql) or echo("error with responses"); But it generated an error. How do I just give out ...
3
votes
3answers
248 views

Is there a way to fix Oracle query in shared pool

I have a report engine, performing PreparedStatements on Oracle 11, that is a highly prioritized task. What I see is that first query invocation usually performs much much longer than the same query ...
3
votes
1answer
179 views

Javascript execution order with setTimeout()

Say that I have the following code: function testA { setTimeout('testB()', 1000); doLong(); } function testB { doSomething(); } function doLong() { //takes a few seconds to do something ...
3
votes
5answers
408 views

What happens when you overwrite a memory-mapped executable?

Following the comments on one of my questions I'm intrigued to know what happens when one overwrites an executable. I need to check my understanding on the matter. Say I have /usr/bin/myprog. I run ...
3
votes
2answers
188 views

JavaScript method execution interruption

How can I interrupt execution of a JavaScript method? The method is scheduled using the "setTimeout" function in JavaScript, I need to interrupt that method execution(not by calling the "clearTimeout" ...
3
votes
2answers
165 views

Understanding HTTP Requests/Responses regarding the DOM and script execution

I've been away from web design/development for a long, long now and have recently begun to get back into it. I started off doing things just to make them work, and now that I'm getting back into it, I ...
3
votes
7answers
521 views

How to execute a large PHP Script?

Well basically I may want to execute a script that may take as much as 1 hours as well. What I really want to do is Send SMS to my users using a third party API. So its basically like I supply my ...
3
votes
1answer
56 views

Complete state of a process

I wrote a small program which is as follows: #include<stdio.h> int c=0; int main() { int a=10,b=20; printf("Hello World\n"); c = a+b; printf("%d\n",c); return 0; } I can ...
3
votes
3answers
1k views

Eclipse: export running configuration

I wrote a complex Java application with eclipse that uses many .jar libraries included into project folder. Is there a quick way to export a running configuration of the application that allows me to ...
3
votes
4answers
825 views

Equivalent to window.setTimeout() for C++

In javascript there's this sweet, sweet function window.setTimeout( func, 1000 ) ; which will asynchronously invoke func after 1000 ms. I want to do something similar in C++ (without multithreading), ...
3
votes
1answer
164 views

execute external command / application from java

I'm looking for a package to support reliably executing external processes from Java. My criteria: Abstract over OS. So if I want to run 'foo', it will look for 'foo.bat', 'foo.exe' under windows ...

1 2 3 4 5 7