Tagged Questions

4
votes
2answers
105 views

Running code only once in an OCaml library

I am writing an OCaml library that has some initialization code that needs to be run only once during the lifetime of the program using the library (and store some state that will persist for the ...
2
votes
1answer
104 views

Java field descriptor for Object[][]

Whats field descriptor for an Object[][] within a method descriptor? Say there exists a class foo.bar.Class and a method takes a Class[][], according to ...
1
vote
1answer
76 views

list of methods for use with android NativeActivity

Does anyone know where I can find a list of all the native c/c++ methods and functions for use with the android NativeActivity. I cant seem to find a list anywhere on the google/android site and Ive ...
0
votes
1answer
180 views

TestDriven.NET and native C Library

I am working on a C# application that makes calls to a native Windows C dll. We use TestDriven.NET with xUnit for testing. The problem is, whenever we run unit tests that use the C library (which we ...