Refers to the act of running a process.

learn more… | top users | synonyms

-1
votes
0answers
23 views

Purpose of Virtual Machine in an Interpreter - Answered [closed]

I am writing an interpreter for a simple programming language in c++. Does the virtual machine, where the statements are stored, actually take care of the execution phase? Or does the interpreter take ...
1
vote
1answer
56 views

when I run the program for the second time it doesn't give me correct execution time

I have a C code, When I try to calculate the time of small pieces of processing code for the first execution. It gives me 30 ms, when I turn of the exe file and run it again it gives me 1 ms, and ...
0
votes
1answer
37 views

Python Execution Order with GUI (SOLVED)

I'm having some issues with the following code. This is the first time that I'm working with a GUI and it's been a while since I've worked with python as well. When I try to execute the solfield ...
2
votes
1answer
57 views

PostScript execution of nested procedures

(I'm back with yet another question :-) ) Given the following PostScript code: /riverside { 5 pop } def /star { 6 pop 2 {riverside} repeat } def star I'm wondering how nested procedures should be ...
0
votes
1answer
40 views

PHP of Phpmyadmin does not execute but other php scripts work

When calling the phpmyadmin website a "save file" dialog appears for application/x-httpd-php- so my server does not execute the phpmyadmin php script but transfers the code to my browser. Other php ...
0
votes
0answers
19 views

php code after jQuery $.post() is executed twice

I am still new to PHP and AJAX but I think I have some grasp about JavaScript and jQuery. Here is my problem: In my UI I have a form input field and an OK-button (which is not part of the form). ...
0
votes
0answers
28 views

Testng test methods execution order not proper after specifying preserve order

My testng file looks something like this: <test name="Test1" preserve-order="true"> <parameter name= "workflowName" value="wf_TEST1"/> <parameter name= "folderName" ...
-1
votes
2answers
32 views

Executing .zip files containing separate files of programs [closed]

I'm having trouble figuring out how to properly load and execute Python and WordPress on Windows 7, as well as some others onto my hard drive for the reason that when I downloaded the .zip file, it ...
3
votes
1answer
45 views

Explain the order in which SAS reads data step (conceptual)

I need to understand how SAS reads/executes data steps. When I've looked up info on how SAS reads data steps, all I seem to find is info on how it reads for merging purposes, which i don't understand ...
1
vote
0answers
24 views

Hold the execution of For loop without Break and continue

I want to hold on the execution of for loop till the function inside return the value, but the problem in my code is firstly when I check in debugger , the for loop starts from 5 directly instead of ...
-2
votes
0answers
36 views

How does PHP code actually get executed on the CPU level [closed]

I would like to know and understand, in as much detail as possible, how does PHP code does actually get executed on the CPU level, by those billions of tiny transistors there. For example : what ...
0
votes
1answer
23 views

PHP Execution: Feeding lots of requests at a high rate [closed]

I have 1,000 members in my database who all need to get an email. I have a PHP page which sends those emails and stores the result in the member database. The way I am doing the PHP execution is ...
0
votes
3answers
56 views

What's wrong with my custom Action?

I've tried tons of times to try to use a custom action just to simply copy a file to another place. I do think this should be easily worked, but... I was frustrated that it is always failed! I post ...
0
votes
1answer
39 views

How to force execution of value assignment in blocks of type <%=value%>

is there a directive or a instruction to force the execution of the blocks of type <%=value%> in webpages?, because i have a web project in which i have a block of that type and it just evaluates ...
1
vote
1answer
142 views

dyld: Library not loaded: /System/Library/Frameworks/Social.framework/Social

I have the following execution problem when the application is runing on simulator: dyld: Library not loaded: /System/Library/Frameworks/Social.framework/Social Referenced from: ...
1
vote
1answer
50 views

ARM cortex Architecture Code execution

I have got a question the STM32F407 uC or more over about the cortex-M4 in general. So how is code performed on the arm? Is every single instruction loaded from Flash and executed or is it stored in ...
2
votes
2answers
90 views

How to limit the execution time in C

I'm not a big C expert, and that's why I ask this (probably) easy question. I got a script written in C, and I'd like to limit the execution time with input. Like: ./script.c input1 input2 input3 ...
0
votes
1answer
53 views

Difference between Gradle's terms evaluation and execution

I am new to Gradle build tool and now I am reading the User Guide, but can't understand fully the difference between evaluation and execution phases. In configuration phase project objects are ...
-4
votes
1answer
41 views

how to make this code faster (time limit 0.1 secs) [closed]

import java.util.*; import java.io.*; public class pool { public static void main(String args[])throws IOException { Scanner in=new Scanner(System.in); int ...
0
votes
0answers
32 views

Opencv program exits despite no ERROR

I tried to run the Feature matching with FLANN code. I am using Ms Visual C++ 2010 Express and I dont get any error while building solution 1>------ Build started: Project: SURF_image_matching, ...
0
votes
1answer
37 views

Tkinter: Listbox please behave yourself

import Tkinter def selector(): ... selections_scroller = Tkinter.Scale(b_action, from_=0, to=len(ymls)) ... pos = int(selection.curselection()[0]) loaded = ymls[pos] ...
0
votes
3answers
158 views

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32 bytes) in Joomla

I created a joomla site on my shared hosting this morning. Everything was going great, I was uploading content. And suddenly when I went to create my third category, I got the following error: Fatal ...
-1
votes
1answer
32 views

PHP Maximum Execution Time?

I might be missing something in this block of code, seems like some kind of loop issue, here is the code, I can't figure out what is going on: function clearBoard() { //initialize board ...
0
votes
2answers
105 views

Does a javascript function call run before the entire script is finished parsing?

I know Javascript executes code in sequential order. However I am always trying to identify whether any of the code run instantly, "line after line", after each function is compiled executed, or do ...
0
votes
1answer
37 views

How to overwrite a jQuery function or stop it from executing

I have a jQuery function that transforms a WordPress menu into a floating menu and then back again. I would like to create a demonstration panel in the theme that allows users to toggle or switch ...
0
votes
0answers
12 views

Qt SDK first execution with message “__gxx_personality_sj0”

I've just installed Qt SDK, and to test it, I have created a new GUI application and I have a problem when I execute it. This is the error message : undefined reference to `__gxx_personality_sj0' ...
1
vote
0answers
35 views

Is JavaScript execution context preserved between page visiting/reloading?

Is JavaScript execution context preserved between page visiting/reloading? I load data and want to cache it, but user may follow links or submit forms. So I lose any JS object after a new page ...
1
vote
0answers
52 views

Execution time, Load Time and Compile Time (Memory Managment)

I am now studying Memory Management in the subject of Operating System. I am confused about these 3 different memory allocation. I am able to distinguish the difference of these 3 allocations, but ...
1
vote
3answers
48 views

Does jQuery function have to be in the body?

I am trying to setup an animated menu based off an older jQuery menu. The older version, the function was put directly into the body along with the jQuery version reference link. The problem I had ...
0
votes
1answer
78 views

Puting javascript execution script in remote file

I found a question similar to my question but the answer didn't work for me. I have a navigation that I found online that works with JQuery. I put the navigation execution script in an external ...
0
votes
0answers
26 views

Setting execuationTimeOut for asp.net page

I am having a problem for setting execuationTimeOut for asp.net page. I apply the following solutions for that but did not get my required results. <system.web> <httpRuntime ...
4
votes
1answer
100 views

Is it possible to execute a Java code string at runtime in Android?

I want to get a line of Java code from user and execute it in Android. For example: String strExecutable = " int var; var = 4 + 3" Object obj = aLibrary.eval(strExecutable); It is not java script ...
1
vote
0answers
74 views

run a command line php script from java servlet

Is there any way to run a php command line script (server side) from a javaservlet?? I've been trying and I don't get any exception but the script doesn't do what it supposed it does. I don't know if ...
0
votes
1answer
61 views

PHP: In forEach, stopping execution when a condition is reached, but continuing later

Suppose I have something like this: $count = 0; foreach($CourseDetails as $course_line) { print "<tr><td>{$course_line['class_code']}</td> ...
2
votes
1answer
38 views

Memory Access Permission, Need to execute code from stack. How to verify system permissions?

Question- Is there a command on Linux systems to see if execution from the stack is allowed? Background- Doing a homework assignment that requires a buffer overflow, injecting code into the stack, ...
-1
votes
2answers
28 views

SQL - Guaranteed execution of all statements

I want to run a series of SQL INSERT statements. The problem is I want an all-or-nothing approach. Either they all execute or if one of them doesn't execute then no changes are made to the database. ...
0
votes
2answers
26 views

execution time and memory uses by the code

I am a PHP coder. I don't find any way to get how many time is taken during execution of code.means execution time. and How much memory space is used by the code during execution tim I know the PHP ...
0
votes
1answer
39 views

Neo4J Job execution time

I am trying to record the Neo4J algorithm execution. I run an algorithm 10 times, however the first run is always significantly longer than the rest of executions. For example: elapsed time = | ...
0
votes
1answer
384 views

Issue with command line putty login [closed]

I am trying to execute a shell script on my Unix box from windows using Putty command line. I use the following command from command prompt: putty -ssh <unix-box> <port-number> -l ...
1
vote
1answer
69 views

Single condition slows down SQL query drastically

I have a SQL query looking something like this: WITH RES_CTE AS (SELECT COLUMN1, COLUMN2, [MORE COLUMNS...] ROW_NUMBER() OVER (ORDER BY R.RANKING DESC) AS RowNum FROM TABLE1 As R, TABLE2 ...
2
votes
0answers
83 views

Execution order of Maven build plugins during release:prepare

Today I observed a strange behavior in Maven 3 while preparing a release (with the Maven release plugin). As the description tends to be rather long, I would like to ask the question right before the ...
0
votes
5answers
124 views

Constructor code does not execute before object is created JAVA

I have recently played with code in java, and encountered this problem, that the code inside the constructor seems to be not executed, as the compiler throws the NullPointerException. public class ...
1
vote
3answers
101 views

Adding delay between execution of two following lines

I need to add delay between the execution of two lines in a(same) function. Is there is any favorable options to do this? Note: I don't need two different functions to do this, and the delay must not ...
8
votes
3answers
104 views

PHP workflow - order of execution of functions

I'm wondering about order of interpreting function declarations by PHP engine. I don't know why somethimes PHP shows Call to undefined function fatal error and somethimes interpreter see the function ...
1
vote
3answers
82 views

php do code in background

I have a code that I want to be executed continually, and not blocking site loading. I need to update a record in the database every second or so. Can anybody help me how to do this? Here is the ...
0
votes
0answers
41 views

zephyr automated test case execution

I wanted to execute a automated test case in Zephyr consuming ZBot or Zephyr API. Can anyone tell me how to execute the test case in Zephyr using API ? How to use ZIP(Zephyr Interceptor Program) to ...
2
votes
2answers
85 views

static block instance block java Order

Having read this question In what order are the different parts of a class initialized when a class is loaded in the JVM? and the related JLS. I would like to know in more detail why for example ...
0
votes
1answer
95 views

Response Time of sleeping gwan server script

I want to figure out how gwan responds if a script takes longer than 1 second to finish. To do so, I used the sleep() function in the hello.c example: #include "gwan.h" #include <unistd.h> ...
5
votes
3answers
114 views

very simple JavaScript / jQuery example: unexpected evaluation order of instructions

I am surprised by the fact that a CSS3 transition rule applied via jQuery after a jQuery-based CSS property change actually animates this property change. Please have a look at ...
0
votes
3answers
120 views

PHP code is taking very much time in executing when handling large number

This is a simple program to find prime numbers which check for the division of a number at later stage. I tried to short it by initially taking the integer square root of the number to break down the ...

1 2 3 4 5 11