Runtime is the time during which a program is running (executing)
-1
votes
1answer
16 views
Giving a text value to a combobox not working because it's created in runtime
I'm creating a group of controls in runtime to configure a single element for the purpose of the application. I have multiple elements, so each time I add a new element I create the group of ...
0
votes
1answer
27 views
Using Runtime.getRuntime().exec() to run perl code in java
I have a perl script called pbp that takes an html file as an argument and then creates an output file. Here is my current code. Infile is obtained earlier from a JFile Chooser. I don't get any errors ...
0
votes
1answer
10 views
Splitting and runtime of log n
Sorry, I made a mistake in my earlier question. Because of that I didn't get the answer I wanted.
The teacher told us that every time you divide something by 2, the run-time is likely to be log n. ...
0
votes
1answer
13 views
How determine which algorithm has a run-time of log n
The teacher told us that every time you divide something by 2, the run-time is likely to be log n. For instance, if we divide an array into two, each time we traverse one of the array, the run-time ...
0
votes
0answers
1 views
Single-world term to distinguish persistent configuration storage from runtime state keeping object?
Are there single world, different terms to be used for these two type of state-representing information:
a persistently stored configuration state like an "ini file", intended to loaded at program ...
1
vote
1answer
29 views
Current thread not owner exception
in my application i am using a code that run a batch file, on executing it i am getting a exception i.e. current thread is not owner.
Here i want to mention that my application is based on eclipse ...
0
votes
1answer
28 views
Fortran90 assigning pointers and derived types at runtime
I have a question regarding assigning Fortran90 derived types and pointers at runtime. I want to pass a derived variable type to a subroutine after the code reads an input file. So depending on the ...
1
vote
1answer
38 views
Is it possible to get the typeTag of a runtime instance?
Using scala 2.10, I am trying to instantiate a class from a string and I would like to get its typetag.
for example :
scala> def printClassName[Y: TypeTag](x: Y) = { println(typeTag[Y].tpe) }
...
0
votes
2answers
64 views
Java: How can I find the caller of a method at compilation time?
I have a Java problem for which I can't find an answer: I have a class A containing a method a() that should only be called from a class extending class B. For the moment, the best solution I could ...
-6
votes
0answers
19 views
i am not able to run my application,it ends before it starts [closed]
05-23 06:58:40.601: W/Trace(778): Unexpected value from nativeGetEnabledTags: 0
05-23 06:58:40.601: W/Trace(778): Unexpected value from nativeGetEnabledTags: 0
05-23 06:58:40.601: W/Trace(778): ...
0
votes
1answer
20 views
References, loading different copy of assembly at runtime
How can I reference a managed assembly in my project directory to be able to build my application, but then have the CLR load a different copy of that assembly (at a specified path) at run time?
1
vote
0answers
19 views
Visual Studio Visualizer
To make this clear, I'm using .net 3.5
I'm currently creating an Visual Studio Visualizer in order to be able to see the values of individual rules in a WF RuleSet. Everything is ok, but now I need ...
0
votes
0answers
29 views
Getting rid of loaded assemblies
I made a script tool using the .NET integrated compiler.
Shortly, at runtime it compiles a source file to a assembly, creates a object defined in the assembly and starts a method of the object.
...
2
votes
1answer
59 views
The relationship between linear recursion, binary recursion and runtime
Say we have a method that takes n steps, but that calls itself linearly at the worst case n times. In such a case would the Big O would be n*n? So is a recursive call generally n^2 similarly to two ...
0
votes
1answer
14 views
How to dynamically change FXG file?
I load my fxg and it's fine. But I want to change my fxg file in runtime, then i want to refresh my browser page and see my changes. Is it possible to do in flex?
2
votes
3answers
37 views
Send Parameter To Runtime.getRuntime().exec() After Execution
I need to execute a command in my java program but after executing the command , it required another parameter ( a password in my case ). how can I manage the output process of ...
0
votes
2answers
23 views
Get Class from External Library's Binary
Is it possible to get a class from an external library's binary in ObjC?
Like i kno the name of the class, and im just tryna test a view to see if its a type of class
ive tried forward declarations, ...
0
votes
1answer
35 views
vba error 438 but object class does contain sub
I am writing code which is supposed to read in data from an Excel worksheet, save it as strings into variables contained in an object of a class which I have defined and then add this object to an ...
0
votes
2answers
27 views
Java runtine.exec: doesn't change path
java:
public static void startCmd(String path)
{
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec(path);
BufferedReader input = new BufferedReader(new ...
1
vote
1answer
48 views
Conditionally replacing a C function at runtime
Is it possible to conditionally replace a function at runtime in C (in particular, a function in a dynamically loaded library)?
I know that you can use LD_PRELOAD or just make a function of the same ...
0
votes
1answer
111 views
creating delphi timers dynamically at runtime (performance, cpu consuming)
In my current project I have a structure like this:
Main Thread (GUI):
->Parser Thread
->Healer Thread
->Scripts Thread
the problem is that the Healer & Scripts Threads have to create ...
-2
votes
1answer
20 views
Main C Program does not find header and methods
Wasn't really sure how to explain this any better in the title. Basically I am learning how to separate my code in C. I have a main, the equivalent of an ArrayList class from java (but converted to c ...
0
votes
1answer
28 views
getting a color from a database entry and applying it to a label background
I am having trouble getting the color the user picks and saving it into a database so that when they reload the program it will automatically apply to the labels background.
I have this to let the ...
0
votes
1answer
40 views
How to determine the runtime of this function
I'm having some trouble with basic runtime understanding, maybe someone can clarify for me.
How would I go about determining the runtime of this function?
I need to determine rather f = O(g) or f = ...
1
vote
1answer
45 views
Java: Unrar rar file with java command
I wan't to extract a rar file in java. I want to be able to choose where to extract the file as well. I have tried to find a library without any luck. So I tried to use the Runtime.getRuntime().exec() ...
0
votes
0answers
15 views
Can using /NODEFAULTLIB lead to access violations?
I'm linking against a Qt5 library, that has been compiled with the Multithreaded Debug DLL option turned on, but I really need to use Multithreaded Debug only. In order to avoid linker errors and ...
0
votes
0answers
19 views
Program moves scroll automatically to top in runtime built controls
I'm working on a project that needs to have a page with controls being repeated for the number of elements to be introduced. For example, if I need to configure 5 elements, i will have 5 rows with ...
0
votes
0answers
36 views
Change log4j properties during runtime
I've done a bit of reading on changing properties at runtime, however I'm looking to see if there are any other ways of doing it.
I've discovered that there are a couple of ways :
Manually changing ...
0
votes
1answer
24 views
Rescheduling Quartz at Runtime
We are novice quartz users at my project writing our first quartz tasks. We have our tasks running, but obviously, we want to learn about managing them, hence this question. We have them configured ...
0
votes
1answer
27 views
Android RuntimeException Eclipse
Hi everybody i'm trying to do a Unit converter but when I run it it stop and show me that
05-15 15:30:45.237: D/AndroidRuntime(333): Shutting down VM
05-15 15:30:45.237: W/dalvikvm(333): ...
-1
votes
1answer
31 views
django queryset runtime - get nth entry in constant time
I'm using multiple ways to get data from db via different django querysets,
but I would like to know the runtime for each queryset and if possible a better way (to maybe get data in constant time!!)
...
1
vote
1answer
59 views
Efficient implementation of summed area table/integral image in R
I am trying to construct a summed area table or integral image given an image matrix. For those of you who dont know what it is, from wikipedia:
A summed area table (also known as an integral ...
0
votes
0answers
35 views
Access ODBC connection SQL Server using runtime
I have an issue with running an application on Access Runtime if using SQL Server connection. Since when changing a PC, the connection settings aren't copied to the new client, I'm wondering how can I ...
0
votes
2answers
52 views
How is the validity of pointer comparisons within an array ensured?
The C standard guarantees the validity of a pointer comparison when both point to elements of the same array, but how does that typically get ensured in a system?
The compiler might let you choose ...
2
votes
1answer
38 views
About Java Access Specifier Binding
In an interview, they asked me:
When Java Access Specifier (Public, Default, Protected, Private) is bind to the Java code? Early Binding or Late Binding??
I said: Early Binding.
Then they said:
We ...
0
votes
1answer
27 views
Runtime of string concatenation checking algorithm
I wrote an algorithm to check whether or not a string is a concatenation of any number of strings in an array (while being able to use a string multiple times). I'm having trouble figuring out exactly ...
0
votes
0answers
36 views
In iOS, are there something similar to Android ANR trace log?
As the title said, I am wondered that when an App is blocked and cannot respond to user interaction, can I get the Call Stack?
Thanks in advance.
More info here: Any good ways to get useful ...
0
votes
3answers
87 views
Get list of functions in a namespace at runtime?
Is it possible to get a list of functions in a certain namespace or all functions in a program at runtime?
I have a function pointer map and I need to add commands on my own to it, but I thought: why ...
-1
votes
3answers
42 views
Exception in thread “main” java.lang.NoClassDefFoundError: javapasswords in Linux [closed]
i have code like this,
import javapasswordsdk.PSDKPassword;
import javapasswordsdk.PSDKPasswordRequest;
import javapasswordsdk.exceptions.PSDKException;
etc.............
I am getting below error, ...
-1
votes
0answers
17 views
how to deselect multiple controls using CTRL Key C#
I have an usercontrol on my winform that can be multiplied dynamically. I managed to create a multi selection of usercontrols using CTRL key,but I am stack on doing the "deselection" ,one by one ...
1
vote
0answers
50 views
How can I check a running process to see what shared libraries it is using?
On Linux, I have a C++ application that is using dlopen() to load some shared libraries, but I'm suspicious that the version of the shared library being loaded is not the one I expect because my ...
0
votes
5answers
35 views
How to attach an event at runtime to all html elements of a certain type using css?
Is it possible to attach an event to an html tag with css:
input [type="text"]
{
onkeypress (dojob(this));
}
0
votes
1answer
61 views
Override method using runtime library
I need to override - (void)viewWillAppear:(BOOL)animatedfor all ViewControllers adding NSLog(@"blabla") in this method. I.e. after every call of viewWillAppear invokes implemented early realization of ...
0
votes
3answers
48 views
Create a Details Form from a GridView c#
Possibly a complex question - but here's hoping
I have a generic data grid on a single form (displays whatever table I want from a dataset) simply by swapping tables in the dataset.
I want to ...
0
votes
1answer
25 views
JQuery Datepicker at Runtime
I have search through the websites but I didn't receive a clue. I have an index page with
<script type="text/javascript">
$(document).ready(function($) {
...
0
votes
2answers
90 views
Total number of ways to write a positive integer as the sum of powers of 2 in efficient time
I've been looking at Number of ways to write n as a sum of powers of 2 and it works just fine, but I was wondering how to improve the run time efficiency of that algorithm. It fails to compute ...
3
votes
2answers
35 views
Mixing mark and sweep with reference counting
I'm designing a very simple compiler (sort of academic research) and I'm thinking on implementing a simple reference counting GC and also a Mark and sweep. The idea is that reference counting can free ...
1
vote
1answer
32 views
Compiling a class method in squeak in run-time
I would like to add a class method during run time in squeak.
I know that there is a method compile, which is defined in Behaviour class, but this one adds the new method I want to the class Instance ...
0
votes
0answers
14 views
Migrated version of an application does not require old runtime dll's
I have migrated a VC++ application from VS2003 to VS2010.After migration, I generated msi package. But when I installed the application in Windows XP or Windows 2003 Server and tried to run it, I get ...
0
votes
1answer
42 views
Throw an exception during runtime using eclipse
I'm working on an batch application right now that utilizes a class to email out any errors caught during runtime so that the support team will know the batch failed immediately. Basically, the entire ...





