Tagged Questions

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

learn more… | top users | synonyms

91
votes
15answers
3k views

Are there any smart cases of runtime code modification?

Can you think of any legitimate (smart) uses for runtime code modification (program modifying it's own code at runtime)? Modern operating systems seem to frown upon programs that do this since this ...
49
votes
10answers
8k views

How to find where a method is defined at runtime?

We recently had a problem where, after a series of commits had occurred, a backend process failed to run. Now, we were good little boys and girls and ran rake test after every check-in but due to some ...
45
votes
7answers
3k views

How fast is D compared to C++?

I like some features of D, but would be interested if they come with a runtime penalty? To compare, I implemented a simple program that computes scalar products of many short vectors both in C++ and ...
43
votes
10answers
35k views

force Maven2 to copy dependencies into target/lib

How do I get my project's runtime dependencies copied into the target/lib folder? As it is right now, after 'mvn clean install' the target folder contains only my project's jar, but none of the ...
28
votes
12answers
14k views

Runtime vs Compile time

Can anyone please give me a good understanding of whats the difference between run-time and compile-time?
20
votes
4answers
28k views

Winforms TableLayoutPanel adding rows programatically

I've been fighting with this for a while, and have found that a number of other people struggle with the TableLayoutPanel (.net 2.0 Winforms) as well. Problem I am attempting to take a 'blank' ...
19
votes
7answers
685 views

How does the C++ runtime system know when objects go out of scope

I was wondering how the C++ runtime system detects when an object goes out of scope so that it calls the destructor accordingly to free up the occupied memory. Thanks.
19
votes
4answers
10k views

Python: changing methods and attributes at runtime

I wish to create a class in Python that I can add and remove attributes and methods. How can I acomplish that? Oh, and please don't ask why.
19
votes
2answers
6k views

Why is Class.newInstance() “evil”?

Ryan Delucchi asked here in comment #3 to Tom Hawtin's answer: why is Class.newInstance() "evil"? this in response to the code sample: // Avoid Class.newInstance, for it is evil. ...
18
votes
11answers
17k views

Online compilers/runtime for Java, C++, Python and ObjC?

Does anyone know of a good online compiler/runtime (for C++, Java, Python, ObjC etc.) that I can access on the web? What I'm looking for is something that would allow me to type in a program in a ...
17
votes
13answers
3k views

In Java, is there any disadvantage to static methods on a class?

Lets assume that a rule (or rule of thumb, anyway), has been imposed in my coding environment that any method on a class that doesn't use, modify, or otherwise need any instance variables to do its ...
17
votes
5answers
28k views

How to load a jar file at runtime

I was asked to build a java system that will have the ability to load new code (expantions) while running. How do I re-load a jar file while my code is running? or how do I load a new jar? ...
16
votes
8answers
796 views

Which popular libraries for a standalone JavaScript interpreter (jslibs)?

I am working on a standalone JavaScript development runtime environment for using JavaScript as a general-purpose scripting language. Currently I support the following libraries: zlib, SQLite, ...
15
votes
4answers
588 views

Why am I getting a generic constraint violation at runtime? [closed]

I'm getting the following exception while trying to create a new instance of a class that heavily relies on generics: new TestServer(8888); System.TypeLoadException GenericArguments[0], ...
15
votes
5answers
627 views

Creating a “spell check” that checks against a database with a reasonable runtime

I'm not asking about implementing the spell check algorithm itself. I have a database that contains hundreds of thousands of records. What I am looking to do is checking a user input against a certain ...
15
votes
2answers
437 views

StackOverflowException in .NET 4

The following code works fine until I upgrade to .NET 4 (x64) namespace CrashME { class Program { private static volatile bool testCrash = false; private static void Crash() ...
15
votes
1answer
3k views

Objective-C Runtime: best way to check if class conforms to protocol?

I have a Class (but no instance) and need to know if it conforms to a certain protocol. However, Class can be subclassed several times and class_conformsToProtocol() ignores protocols declared on ...
14
votes
7answers
538 views

What's the magic of arrays in C#

int[] a = new int[5]; string[] b = new string[1]; The types of both a and b inherit from the abstract System.Array, but there is no real classes in the built-in library(it seems that there are some ...
14
votes
5answers
2k views

Getting template metaprogramming compile-time constants at runtime

Background Consider the following: template <unsigned N> struct Fibonacci { enum { value = Fibonacci<N-1>::value + Fibonacci<N-2>::value }; }; template <> ...
14
votes
2answers
6k views

How do I get at the goodies in my Grails Config.groovy at runtime?

in Config.groovy I see this: // set per-environment serverURL stem for creating absolute links environments { production { grails.serverURL = "http://www.changeme.com" } } what is ...
13
votes
4answers
312 views

Why does this generics scenario cause a TypeLoadException?

This got a bit long-winded, so here's the quick version: Why does this cause a runtime TypeLoadException? (And should the compiler prevent me from doing it?) interface I { void Foo<T>(); } ...
13
votes
3answers
555 views

Evaluation of Haskell Statements/Expressions using GHC API

For a tool I'm writing ( http://hackage.haskell.org/package/explore ) I need a way to read haskell function definitions at run-time, apply them to values from my tool and retrieve the results of their ...
13
votes
5answers
10k views

How do you modify the web.config appSettings at runtime?

I am confused on how to modify the web.config appSettings values at runtime. For example, I have this appSettings section: <appSettings> <add key="productspagedesc" value="TODO: Edit this ...
12
votes
9answers
12k views

How to add a timeout value when using Java's Runtime.exec()?

I have a method I am using to execute a command on the local host. I'd like to add a timeout parameter to the method so that if the command being called doesn't finish in a reasonable amount of time ...
11
votes
3answers
282 views

.NET: Value type inheritance - technical limitations?

I'm wondering if there are any technical reasons for why .NET value types do not support inheritance (disregarding interface implementation)... I can't at first glance think of a reason why value ...
11
votes
5answers
2k views

What is the C runtime library?

OK, I know this is maybe the most stupid question ever asked here, but what actually is C runtime library and what is used for? I was searching, googling like devil, but I could find better than ...
11
votes
2answers
673 views

Security of scala runtime

I'm developer of Robocode engine. We would like to make Robocode multilingual and Scala seems to be good match. We have Scala plugin prototype here. The problem: Because users are creative ...
11
votes
3answers
18k views

Where to download Microsoft Visual c++ 2003 redistributable

I have an old dll that uses the Microsoft Visual C++ 2003 (7.1) run time package. Unfortunately I don't have that DLL around anymore. Short of reinstalling VS2003, is there another way to get the ...
11
votes
4answers
5k views

C#: Instantiate an object with a runtime-determined type

I'm in a situation where I'd like to instantiate an object of a type that will be determined at runtime. I also need to perform an explicit cast to that type. Something like: static void ...
11
votes
6answers
7k views

Capturing stdout when calling Runtime.exec

When experiencing networking problems on client machines, I'd like to be able to run a few command lines and email the results of them to myself. I've found Runtime.exec will allow me to execute ...
10
votes
1answer
164 views

What's the purpose of these Java files in scala.runtime?

There are a few *.java files in the source tree of Scala in the scala.runtime directory. Those files seem to be very simple, e. g. DoubleRef.java looks like this: package scala.runtime; public ...
10
votes
1answer
354 views

Is there a summary of visual studio 2008 runtime versions?

I've been looking into a strange problem where loading of one of our application's dlls fails on certain systems (using the Global Flags loader snap flag shows it's somewhere within LoadLibraryEx). ...
10
votes
2answers
6k views

Rails: convert UTC DateTime to another time zone

In Ruby/Rails, how do I convert a UTC DateTime to another time zone?
10
votes
2answers
6k views

iPhone Simulator: build errors when using synthesized instance variables

There are two runtimes for Cocoa/Objective-C: the legacy runtime and the "modern" runtime (that's what Apple calls it). According to Apple's documentation, "iPhone applications and 64-bit programs on ...
10
votes
5answers
7k views

Java reflection: How do I override or generate methods at runtime?

It is possible in plain Java to override a method of a class programmatically at runtime (or even create a new method)? I want to be able to do this even if I don't know the classes at compile time. ...
10
votes
7answers
519 views

Does the .NET runtime internally map to win32 function calls?

In other words, does the .NET framework eventually make calls somewhere to get its work done? Or did Microsoft completely re-create all the functionality of the win32 library in their .NET framework. ...
10
votes
6answers
4k views

On-the-fly, in-memory java code compilation for Java 5 and Java 6

How can I compile java code from an arbitrary string (in memory) in Java 5 and Java 6, load it and run a specific method on it (predefined)? Before you flame this, I looked over existing ...
10
votes
6answers
7k views

Mono performance

Are there any performance benchmarks for Mono compared to say Java in GNU/Linux? Have you ever tested Mono's performance?
10
votes
4answers
2k views

During execution, how can a java program tell how much memory it is using?

During execution, how can a java program tell how much memory it is using? I don't care how efficient it is!
10
votes
3answers
945 views

What attributes help runtime .Net performance?

I am looking for attributes I can use to ensure the best runtime performance for my .Net application by giving hints to the loader, JIT compiler or ngen. For example we have DebuggableAttribute which ...
9
votes
2answers
108 views

At runtime, how can I limit the number of java threads

I am running a genome assembly program *Trinity, http://trinityrnaseq.sourceforge.net/, if interested) on one of the XSEDE resources. The hardware limits the number of threads to 2500, which the ...
9
votes
4answers
267 views

What is Type.GUID and how does it relate to Type.Equals()?

I came across some interesting behavior while trying to compare an instance of System.RuntimeType with a generic type TOut: Type runtimeT = methodInfo.ReturnType; // get RuntimeType using reflection ...
9
votes
5answers
555 views

Compile a C++ program with only dependency on kernel32.dll and user32.dll?

I'm working with Visual Studio 2005. I want to compile a simple program that will work with any Windows 32bit version independent of what c++ runtime library version installed. This program will ...
9
votes
6answers
389 views

If statement weirdness in Visual Studio 2008

I've come across a problem so strange, that I've recorded my session because I didn't think anyone would belive me. I came across a bug that seems to be at very fundamental level. This is a single ...
9
votes
5answers
554 views

Can Perl be “statically” parsed?

An article called "Perl cannot be parsed, a formal proof" is doing the rounds. So, does Perl decide the meaning of its parsed code at "run-time" or "compile-time"? In some discussions I've read, I ...
9
votes
8answers
4k views

Setting JVM heap size at runtime

Is there a way to set heap size from a running Java program?
9
votes
5answers
1k views

How do I use a Perl package known only in runtime?

I have a Perl program, that needs to use packages (that I also write). Some of those packages are only chosen in Runtime (based on some environment variable). I don't want to put in my code a "use" ...
8
votes
6answers
115 views

Efficient run-time type checking

I have hierarchy of classes like follows (in fact I have more than 3 derived types): class A {}; class B : A {}; class C : B {}; class D : A {}; Instances of these classes are stored in ...
8
votes
1answer
111 views

In the scheduler of the GHC RTS, why should it mark a capability as free?

When I read through the GHC Wiki commentary on the scheduler I was confused about this section: One reason behind marking a Capability as free when it is handed over is to support fast ...
8
votes
1answer
285 views

Dynamically combine Boost.Spirit.Qi rules at runtime (arbitrary number of alternatives)

I was wondering whether there is a way in Boost.Spirit.Qi to dynamically combine an arbitrary number of rules at runtime. The inner workings of Boost.Spirit are still a bit of a mystery to me, but ...

1 2 3 4 5 29