Questions tagged [compiled]

163 questions
7
votes
3 answers

What's the purpose of adding compiled Func methods together?

I have seen that is is possible to add compiled methods together. Expression> ln = c => c.lastname.Equals(_customer.lastName, StringComparison.InvariantCultureIgnoreCase); Expression> fn = c =>…
Ian Robertson
  • 2,652
  • 3
  • 28
  • 36
7
votes
7 answers

Interpreted vs. Compiled Languages for Web Sites (PHP, ASP, Perl, Python, etc.)

I build database-driven web sites. Previously I have used Perl or PHP with MySQL. Now I am starting a big new project, and I want to do it in the way that will result in the most responsive possible site. I have seen several pages here where…
Andy Swift
  • 2,179
  • 3
  • 32
  • 53
6
votes
1 answer

Building/testing a Python project with C extensions

I have a project with a python package and a compiled component inside of it. Current directory layout is: foo/ foo/__init__.py foo/... src/ src/c_foo.c tests/ tests/test_foo.py setup.py When the project is built,…
Dimitri Tcaciuc
  • 5,053
  • 5
  • 20
  • 22
6
votes
4 answers

#region descriptions compiled into .exe in .net?

Are #region/#endregion directive "descriptions" compiled into the .EXE in .NET? I understand that comments are NOT, but I often chunk groups of code within a region and give it a useful description. I want to make sure these descriptions are not…
neoikon
  • 193
  • 1
  • 6
5
votes
3 answers

With gcj compiled java & XStream. (Exception: Cannot create XmlPullParser)

I'm enhancing a client, which is part of a bigger project. Because of the lack of speed i was forced to switch to CNI and therefore i had to generate native code with the GNU-gcj compiler (gnu 4.6.3). The compiling and linking works fine (thanks to…
Chris
  • 51
  • 1
  • 4
4
votes
1 answer

Python find out contents of compiled module?

So have this Python .pyd module (C++), so I can't just open it in a text editor to find out what it contains. So how can I? I just want to know the function names inside it.
razrr
  • 41
  • 1
  • 2
4
votes
0 answers

app_global.asax.dll not generated in filesystem while publishing

When I publish MVC application in filesystem, it published successfully. When I dumped into server and tried testing the code it is giving the error. App_global.asax.dll is not present. I tried below links, it didn't help: I don't want to…
Vaibhav More
  • 212
  • 1
  • 14
4
votes
7 answers

Javascript compiled or not? Check inside

Note that I am not experienced with Javascript. If a javascript code starts like this: javascript:var…
Victor
  • 61
  • 1
  • 3
4
votes
2 answers

AutoCompleteTextView doesn't show suggestions in Android 2.3.5

I'm using a special autocompletetextview for suggestions of thousands of streets. Due to this huge element list, I have to clear and populate the Adapter on the fly depending on the first input letter. For example, when the user enters "b", the…
Bevor
  • 8,396
  • 15
  • 77
  • 141
4
votes
2 answers

Workaround for LINQ to SQL Entity Identity Caching and Compiled Query Bug?

I've come across what appears to be a bug in linq to sql where identity caching does not work when performing primary key queries inside of a compiled query. I wrote the following sample to demonstrate the usage of identity caching. It only executes…
Dan Ling
  • 2,965
  • 2
  • 29
  • 43
4
votes
7 answers

what is the fastest way of calling and executing a function in C?

I have a lot of functions(huge list) defined and compiled. And I use function pointers to call and execute the functions by sending arguments dynamically during runtime. It is an iterative process involving more than hundred thousand function calls…
cvader
3
votes
1 answer

Creating iOS compiled SDK in swift which has third party dependency (using CocoaPods)

I've a SDK in Swift 5.1 which our customer would like to distribute (sell) as a compiled SDK instead of giving its sources. Unfortunately this SDK depends on some third party libraries, integrated using CocoaPods (Alamofire, RealmSwift,…
Marco Siino
  • 41
  • 1
  • 6
3
votes
2 answers

Cx_freeze - How can I Install the shared libraries to /usr/lib

I am using cx_freeze to compile my python script and when I compile the program, all the files are placed in one specified folder. The executable wont run if the shared libs are not within the same directory. How would I set it up so the executable…
daxvena
  • 1,140
  • 3
  • 14
  • 30
3
votes
5 answers

Need to create a compiled delphi app that can make a separate compiled app

I need to make an app that will let users select some options, click a button, and a separate compiled app is created. Is this possible? I am using delphi 7 and 2010. Thanks for the replies. Here is a little more info. It would have to be a…
David
  • 117
  • 1
  • 8
3
votes
2 answers

Requirements for running compiled C# programs (.exe)

Let's say I have a compiled C# application which was created with Visual Studio. A .exe file. I want to run the file on another computer. What are the system requirements for the computer in order to run the file? Does it have to have the same .Net…
LevvanGOALski
  • 31
  • 1
  • 3
1
2
3
10 11