Top "Runtime" questions

Runtime is the time during which a program is running (executing)

Can you add to an enum type in run-time

If I have an enum type: public enum Sport { Tennis = 0; Football = 1; Squash = 2; Volleyball = 3; } Can I somehow add during run-time: PingPong = 4

c# enums runtime
Setting JVM heap size at runtime

Is there a way to set heap size from a running Java program?

java jvm runtime heap
Detecting the present annotations within the given object passed into a constructor

My question in short: how do I detect if a java annotation is present (and in the right place) for …

java reflection constructor annotations runtime
Compile time vs Run time Dependency - Java

What is the difference between compile time and run time dependencies in Java? It is related to class path, but …

java runtime classpath compile-time
Can a program depend on a library during compilation but not runtime?

I understand the difference between runtime and compile-time and how to differentiate between the two, but I just don't see …

java build-process runtime compile-time
Error: Deleted row information cannot be accessed through the row

To whom this may concern, I have searched a considerable amount of time, to work a way out of this …

c# datagrid dataset runtime
Unable to associate project with a runtime server in eclipse IDE

I had created a dynamic web project. AS of now it has a jsp file which am trying to run. …

java eclipse runtime tomcat6
Getting fortran runtime error: end of file

I have recently learned how to work with basic files in Fortran and I assumed it was as simple as: …

runtime fortran gfortran
numpy.max or max ? Which one is faster?

In python, which one is faster ? numpy.max(), numpy.min() or max(), min() My list/array length varies from 2 to 600. …

python numpy runtime max min
Changing Django settings at runtime

I'd like to expose some (app-specific) settings to the admin interface, so users can change them comfortably and also not …

django runtime settings