Questions tagged [aot]

In Microsoft Dynamics AX, application objects are defined in the Application Object Tree (AOT) and are instantiated at runtime. The AOT also contains application resources, references, and documentation. This section describes the AOT and its contents, how to use the AOT to define application objects, and how to import and export definitions of application objects.

In Microsoft Dynamics AX, application objects are defined in the Application Object Tree (AOT) and are instantiated at runtime. The AOT also contains application resources, references, and documentation. This section describes the AOT and its contents, how to use the AOT to define application objects, and how to import and export definitions of application objects.

More information on MSDN:

http://msdn.microsoft.com/en-us/library/gg840931.aspx

349 questions
44
votes
1 answer

JEP 295 AOT: Objects compiled multiple times

I am trying to compile an application server with JDK9's new AOT feature, and am facing a number of challenges. The appserver consists of ~180 MB jars; compiling that together overflows integer so I've tried to compile each module to one (.so)…
Radim Vansa
  • 5,686
  • 2
  • 25
  • 40
26
votes
3 answers

ng serve --prod throws "ERROR TypeError: (void 0) is not a function"

So when got this trouble in Angular-CLI app. Here is what happening: ng serve, ng serve --aot produces no exceptions, everything works fine. Only running ng serve --prod breaks while surfing the app. ERROR TypeError: (void 0) is not a function Was…
25
votes
1 answer

How to force Monotouch AOT Compiler to see a nested generic method?

I've had to jump through hoops, but I've almost managed to get ServiceStack working on iOS with Monotouch in my project. One runtime JIT exception is holding out: System.ExecutionEngineException: Attempting to JIT compile method…
Felix
  • 1,346
  • 1
  • 12
  • 25
22
votes
4 answers

Angular AOT compilation error "cannot determine module for class Component''

I have an Angular (4.3.2) application on which I want to perform an AOT build. App was created using @angular/cli. I have two components scaffolded with ng generate and a module in which both are included as a declaration: import {PrivateComponent}…
Armen Vardanyan
  • 3,214
  • 1
  • 13
  • 34
21
votes
2 answers

Flutter AOT vs JIT

My understanding is that Flutter is compiled AOT. Can it be compiled as JIT instead of AOT, will it work and what is the switch that would do that? Thanks!
user603749
  • 1,638
  • 2
  • 24
  • 36
20
votes
2 answers

Enable AOT in Xamarin for Android (Visual Studio)

I know that there's support for AOT in Xamarin for Android. After the software became free, all of its features became free as well. I read around the documentation and I enabled AOT by modifying my project.csproj file, as…
Riuo
  • 413
  • 1
  • 3
  • 15
18
votes
2 answers

angular-cli: AoT compilation with ng serve by default

In Angular CLI, ng serve uses JiT and the flag --aot is required in order to use AoT compilation. Is it possible to make that ng serve uses AoT by default and JIT is only used when --aot=false flag is passed?
acalvo
  • 375
  • 1
  • 3
  • 8
17
votes
3 answers

How to pass a typed collection from clojure to java?

I know the basics of clojure/java interop: calling java from clojure and vice versa. However, I was not able to return a typed collection from clojure to java. I am trying to see something of that nature List from the java code which is…
user258030
  • 399
  • 3
  • 10
16
votes
2 answers

Webpack, Typescript and Angular2 with Ahead Of Time (AOT) compilation?

The latest release of Angular2 allows for Ahead of time (AOT) compilation, using this code in your app.bootstrap.ts file: // The browser platform without a compiler import { platformBrowser } from '@angular/platform-browser'; // The app module…
TetraDev
  • 16,074
  • 6
  • 60
  • 61
15
votes
3 answers

How to Deploy Angular 4+ (front-end) to CDN?

I would like to deploy my Angular app (with AOT) to a CDN, while using my own REST server. I would like the first request always go to my REST server (let say https://example.com). Then the first response will instruct the browser to load…
gye
  • 1,374
  • 3
  • 16
  • 27
13
votes
7 answers

Json.NET under Unity3d for iOS

has anyone succeeded to adapt/port Json.NET to a version able to run under Unity3d deployed to iOS (and the webplayer, and android, too, but these seem less problematic), somehow overcoming the AOT issues there? Or are there plans to release a…
Modern Ronin
  • 571
  • 1
  • 5
  • 13
11
votes
1 answer

Performance differences between VALA vs AOT compilations?

I have been developing an image processing application in Java but I have been recently interested in VALA. The reason is because I believe I can increase the application performance (my concern is mainly in the interconnection with C/C++ libraries,…
lepe
  • 24,677
  • 9
  • 99
  • 108
11
votes
2 answers

Angular 2 AOT vs JIT payload comparison

I'm pretty new to Angular 2, so correct me if I'm inaccurate. My understanding of Angular 1 vs 2 when it comes to compiler: In Angular 1 the compiler is more general and dynamic, meaning that dirty checking code is a single code running over…
Alireza Mirian
  • 5,862
  • 3
  • 29
  • 48
11
votes
3 answers

Free AOT Java compiler

Does anyone know some free AOT Java compiler? I have found just one - http://gcc.gnu.org/java/.
dede
  • 809
  • 3
  • 11
  • 26
10
votes
3 answers

How Translate ByteCode to Machine Native Code

I am looking for a translator for translate Java ByteCode to Machine Native Code before execution to improve performance. I heard that OpenOffice is made with JAVA, but I can't see any jar file in his installation folder, therefore, maybe there is a…
Jesús Galindo
  • 471
  • 1
  • 5
  • 11
1
2 3
23 24