Top "Runtime" questions

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

32-bit VC++ redistributable on 64 bit OS?

Using Visual Studio, I have built an C++ application running in 32bit. It will be deployed both to 32-bit and 64…

visual-c++ runtime 32bit-64bit redistributable
Android: how to use the current theme's colors in a drawable xml?

I have defined two themes with different primary, primary dark, primary light and accent colors. <style name="AppTheme" parent="…

android xml runtime android-theme xml-drawable
Understanding the "underlying C/C++ object has been deleted" error

It's not the first time I am getting the RuntimeError: underlying C/C++ object has been deleted. I've solved it …

qt runtime pyqt
How to compile rhino/javascript files to .class bytecode for java at runtime

I'm making a falling sand game in Java. I want users to be able to write their own engine for …

java javascript runtime compilation rhino
Is static_cast<T>(...) compile-time or run-time?

Is static_cast<T>(...) something that gets done at compile-time or run-time? I've googled around but I got …

c++ c++11 casting runtime compile-time
How do I get rid of Java child processes when my Java app exits/crashes?

I launch a child process in Java as follows: final String[] cmd = {"<childProcessName>"}; Process process = Runtime.getRuntime().exec(…

java runtime subprocess shutdown process-management
How to organize build, server, client and shared JavaScript code with NodeJS

One big benefit I've always perceived with using NodeJS on the server is the potential for sharing bits of code …

javascript node.js runtime organization build-time
Viewing ACCDB with Access 2010 runtime when Access 2007 is installed

I'm hoping someone can either tell me what I'm doing wrong correct my flawed understanding of how this works and …

ms-access ms-office runtime backwards-compatibility version-compatibility
What is the difference between devel and runtime tag for a Docker container?

For Pytorch and Tensorflow, there are tags which differentiate devel and runtime, I am not quite sure what are the …

docker runtime virtualization docker-image container-image
How are Haskell programs compiled and executed internally?

I'm having trouble understanding how Haskell (GHC) compiles programs, and how those programs are run. GHC is the canonical example …

haskell compilation runtime ghc