Questions tagged [compiled]
163 questions
3
votes
1 answer
Referencing an XSL Stylesheet within another
I have a XSL stylesheet that I wish to compile into a dll using the xsltc.exe command. The issue that I am facing is that there is a common stylesheet that is being used and my styleheet is referencing that stylesheet using the xsl:include tag as…

Manthan
- 393
- 2
- 5
- 13
3
votes
1 answer
Compiled Querys in Slick
I need to compile a query in Slick with Play and PostgreSQL
val bioMaterialTypes: TableQuery[Tables.BioMaterialType] = Tables.BioMaterialType
def getAllBmts() = for{ bmt <- bioMaterialTypes } yield bmt
val queryCompiled = Compiled(getAllBmts…

IgnacioPL
- 67
- 1
- 6
3
votes
1 answer
Compiled Language with Dynamic Typing
I'm a bit confused when it comes to a compiled language (compilation to native code) with dynamic typing.
Dynamic typing says that the types in a program are only inferred at runtime.
Now if a language is compiled, there's no interpreter running…

Bharat Khatri
- 1,367
- 2
- 16
- 27
3
votes
1 answer
Run compiled Saxon stylesheet using JAXP API
I have a compiled stylesheet that was created with this Saxon command:
java net.sf.saxon.Compile [options] stylesheet output [ params…]
I would now like to apply this stylesheet to an XML tree within my Java code. Is it possible to do this…

user1919235
- 470
- 7
- 17
3
votes
2 answers
Does an ODE written using GNU gsl outperform Mathematica's NDSolve?
Would an ODE solver written in C perhaps using the GSL library have significant speed advantages compared with Mathematica 8.0 NDSolve? How would it fair in terms of accuracy?
My understanding is that compiled code could in principle be faster, but…

fpghost
- 2,834
- 4
- 32
- 61
3
votes
4 answers
trying to import a *.pyc as a module
I have a python script that is trying to import another script somewhere in the file-system (path is only known at runtime).
To my understanding I need to use the imp module and this might work, but when loading the module I get an error that…

AntiqueZamba
- 155
- 2
- 4
- 11
3
votes
3 answers
Is it possible to find the jdk vendor for a compiled java file
I have tried to find out the jdk vendor for my class file but haven't been able to.
Can anyone help me in finding out whether Is it possible to find the jdk vendor for a compiled java file. If yes, then how?

Gaurav
- 61
- 2
2
votes
3 answers
ASP.NET: How to override a non-virtual method from a compiled assembly?
I'm in a bit of a predicament.
I've been assigned the task of maintaining an existing ASP.NET web application for which the source code is not available - all code is compiled and put into the bin folder.
Now I need to change a few methods'…

Saeb Amini
- 23,054
- 9
- 78
- 76
2
votes
1 answer
Distributing an application written in Ruby on Rails
We have an existing web application that is written in Ruby 1.9.2 and Rails 3.x.
Our original model was software as a service but in investigating in our industry there are times where hosting our code on the client may be a better option for…

mattvv
- 583
- 5
- 17
2
votes
0 answers
Using compiled bindings with Prism
I want to use compiled bindings in my Xamarin Forms app in combination with Prism.
I created a small xamarin forms app with a simple view, viewmodel and prism (prism:ViewModelLocator.AutowireViewModel="True"). Classic binding works as expected.
How…

Luc Baeten
- 21
- 2
2
votes
1 answer
"Uncaught TypeError: Cannot read property 'ready' of undefined" error in datatags.js when customising a BigCommerce theme using Cornerstone
I'm working on a customised BigCommerce theme using Cornerstone as a starting point to customise from. I have been using CLI to add JavaScript libraries via NPM.
Following this, the build compiles without errors & runs in my local host environment,…

Ash_Flourish
- 23
- 2
2
votes
4 answers
Do interpreted languages need an operating system to work?
Do interpreted languages such as Java and Python need an operating system to work?
For example, on a bare-metal ARM microcontroller, can an interpreter be installed such that we can have both compiled code such as C, and interpreted code such as…

Engineer999
- 3,683
- 6
- 33
- 71
2
votes
2 answers
MSBuild doing OctoPack before Publish
I have a C# .NET v4.6.1 compiled Azure Function, I am using Microsoft.NET.Sdk.Functions and I deploy it using my usual CI/CD Pipeline.
That being, a TeamCity MSBuild Build Step to create an OctoPack (because I have installed the OctoPack 3.6.3 NuGet…

David Dunkley
- 41
- 4
2
votes
1 answer
Saxon-EE distibution without license
If I will have Saxon-EE (.NET version) individual license, I can compile stylesheet and export to XML Format (without bytecode) on my side.
But I don't know can i distribute Saxon-EE libraries with my .NET app for importing compiled stylesheets on…

user3604347
- 91
- 2
2
votes
3 answers
Pre compiling a very large regular expression
I am having a very strange problem. I have a very large regular expression searching for certain words in some text (RegEx looks something like this: (?i)\b(a|b|c|d...)\b; and so on where a, b, c, d, represent words). Anyway, I put it in a pre…

Serge
- 63
- 1
- 1
- 8