runtime

how do I override a setter function at runtime in actionscript?

Hi I have an AS class with setter and getter functions. I need to tweak one of this class's instances so that it's setter function will process the input before assigning it to the local variable. or, in a more elaborated way, what should I use instead of $$$ in the example below? class MyClass{ private var _legend:Array; function s...

Select template argument at runtime in C++

Suppose I have a set of functions and classes which are templated to use single (float) or double precision. Of course I could write just two pieces of bootstrap code, or mess with macros. But can I just switch template argument at runtime? ...

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 implementations: Most rely on Java 6 Compiler API. Those that don't, rely on tricks. Yes, I checked out commons-jci. Either I'm too dense to understa...

C# cannot find library during runtime

I have a C# project that uses a dll. I added the dll to project references and I set the property Copy Local to False (I do not want to have local copies of that dll). The compilation looks fine, but when I try to run the C# application, it cannot find the dll. Where can I tell the project where to look for the library during runtime...

ListBox.FindString what's the worst case runtime? O(n), O(n log n), O(1)?

Out of curiosity, what is ListBox.FindString(string)'s worst case runtime? MSDN does not state this in its API docs. I have a strong suspicion it is O(n), I have a sorted list and O(log n) or O(1) would be nice, is there a way to change which sorting algorithm FindString uses at runtime? ...

how do I install apache portable runtime

Hi,..I am trying to install subversion on a linux machine and get I get and error saying that I don't have APR installed My question is: how do I install APR and link with with my Apache HTTP server (i have 2.2 running)? I have looked for documentation for about 2 hours now,...can't find anything...i would also like to mention that i a...

Is it possible to replace a function/method decorator at runtime? [ python ]

If I have a function : @aDecorator def myfunc1(): # do something here if __name__ = "__main__": # this will call the function and will use the decorator @aDecorator myfunc1() # now I want the @aDecorator to be replaced with the decorator @otherDecorator # so that when this code executes, the function no longer goes through ...

Runtime query analysis and optimization

Hi everyone, I'm wondering if there's some sort of runtime mechanism that would observe the queries that are running against my database server; record how many queries of each "type" are running; look at the performance of these queries; then, based on this runtime data, suggest what indexes need to be added/removed. I'm working aga...

What's the deal with functions in the Microsoft C Runtime library?

This page on the MSDN seems to list a bunch of file operations that behave more or less exactly like condensed versions of the three functions used in this example. What's the purpose of these non-standard run-time functions that do things functions are written for in the Win32 API? Are they just there for DOS compatibility? If so, then...

NAnt newbie - support chart

Hi all Will any of you guys be kind and explain the framework support chart shown here: nant.sourceforge.net. My primary interest is the meaning of the terms target and runtime in the context of nant? Thanks in advance / derdres ...

How can I force MSVC++ to ignore CRT dependencies of a static library?

I don't know if it's possible to do this, but I would like the /NODEFAULTLIB to be applied to a static library project. I have many application projects (A.exe, B.dll, C.dll) that use a common static library D.lib. This library has a lot of code and also has other .lib dependencies as well. One of them is the openssl library, which seem...

Spaces in java execute path for OS X

On OS X, I am trying to .exec something, but when a path contains a space, it doesn't work. I've tried surrounding the path with quotes, escaping the space, and even using \u0020. For example, this works: Runtime.getRuntime().exec("open /foldername/toast.sh"); But if there's a space, none of these work: Runtime.getRuntime().exec("o...

Pure Virtual Function Call

I obviously do not 'grok' C++. On this programming assignment, I have hit a dead end. A runtime error occurs at this line of code: else if (grid[i][j]->getType() == WILDEBEEST) { ... with the message "Runtime Error - pure virtual function call." From my understanding, this error occurs if the function reference attempts to call the...

Asymtotic run time needed to compute the transitive closure of a graph?

The transitive closure of a graph is defined e. g. here: http://mathworld.wolfram.com/TransitiveClosure.html It is easily possible in O(n^3), where n is the number of vertices. I was wondering if it can be done in time O(n^2). Thanks in advance ...

C++ runtime required?

Why do some C++ projects require a runtime package to be installed, while others do not? EDIT:How to make a project to work without the runtime? ...

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

Hi, 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 default message" /> <add key="servicespagedesc" value="TODO: Edit this default message" /> <add key="contactspagedesc" value="TODO: Edit thi...

workflow runtime ownership expired

Hello all, I am facing a strange problem in windows workflow foundation, need help from you guys. I have creatd a State Machine Workflow ,it worked very fine in one build , but due to some requirements i altered workflow , build and reinstall application , but now when i am trying to access workflow instaces which i created in pr...

Java runtime vs OS calls

The Java runtime provides a set of standard system libraries for use by programs. To what extent are these libraries similar to the system calls of an operating system, and to what extent are they different??? ...

Call function from DLL with non-static path

I have a DLL that I need to access methods from. In most cases like this I just use [DllImport] to access methods from unmanaged assemblies, but the problem with that in this situation is that it requires the path to the DLL at instantiation time, so a constant string. This particular DLL is one that gets installed with my application ...

Can I add classes to sun's rt.jar file?

I downloaded the Javax.mail package. I have jdk1.6.0_11. Problem is...I cannot get javac or java to find those classes! I can get apps to compile using JCreator LE ( by adding the mail jar to its search list ) but, when I try to run the app in a command window, it fails. Can I add these new classes to the rt.jar without hurting my jdk ...