Top "Execution-time" questions

Execution time refers to how long it takes a particular program to execute.

How do I get time of a Python program's execution?

I have a command line program in Python that takes a while to finish. I want to know the exact …

python time execution-time
How do I time a method's execution in Java?

How do I get a method's execution time? Is there a Timer utility class for things like timing how long …

java timing execution-time
How to increase maximum execution time in php

I want to increase maximum execution time in php , not by changing php.ini file. I want to Increase it …

php ini execution-time
Maximum execution time in phpMyadmin

When I try to execute (some) queries in phpMyadmin I get this error Fatal error: Maximum execution time of 60 seconds …

php mysql database xampp execution-time
Find out time it took for a python script to complete execution

I have the following code in a python script: def fun(): #Code here fun() I want to execute this script …

python datetime execution-time
calculating execution time in c++

I have written a c++ program , I want to know how to calculate the time taken for execution so I …

c++ execution-time
How to solve time out in phpmyadmin?

I want import huge (at least 300 mb) sql scripts via phpMyAdmin. I've tried: post_max_size = 750M upload_max_filesize = 750…

php mysql phpmyadmin execution-time
What is the best way to measure execution time of a function?

Obviously I can do and DateTime.Now.After - DateTime.Now.Before but there must be something more sophisticated. Any …

c# performance benchmarking execution-time
Maximum execution time of 120 seconds exceeded in yii2

I upload an excel file with 1000 rows, by default I have just 2 min in execution time, with that time I …

php yii2 execution-time
How to get the execution time of a MySQL query from PHP?

I execute MySQL queries from PHP and would like to know how time consuming they are. Is there any way …

php mysql webserver execution-time