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
5
votes
1 answer

[MonoTouch][Bass.dll] Application crash "Attempting to JIT compile method .. while running with --aot-only"

I faced a problem, that I can't solved for 3 days and you're my last hope. My goal is to record sound with Bass.dll (there's special version of library for iPhone and version of .net wrapper for it; can be found here: un4seen.com) On simulator…
Konstantin Loginov
  • 15,802
  • 5
  • 58
  • 95
5
votes
1 answer

MonoTouch random crash on device, not on simulator

I am thinking this is somehow memory related, but I have done everything I can think of. I have made sure classes are disposed property. Maintained hard references at the class level instead of function scope, for things that might be getting GC'd…
John Sonmez
  • 7,128
  • 5
  • 37
  • 56
4
votes
1 answer

AOT mode in angular builds add `fr.` or `en.` as prefix of translation keys in transloco

I've simple translation keys like login-page.login. When building in AOT, the translation isn't displayed correctly and instead the key fr.login-page.login is displayed. I didn't found why AOT would add the lang prefix. Obviously in JIT everything…
Alexandre SIRKO
  • 816
  • 11
  • 22
4
votes
1 answer

multiple angular application in single webpack config

i have project with many standelone angular application on it. Typical user case can be : admin.ts front.ts dashboard.ts Where each are angular app. To manage that, i have actually single webpack.config.js where i do all packaging stuff. The…
Yanis-git
  • 7,737
  • 3
  • 24
  • 41
4
votes
2 answers

C# Mono aot with protobuf-net getting ExecutionEngineException

First a big thanks to Marc Gravell author of protobuf-net http://code.google.com/p/protobuf-net/ . It's a really great resource. Anyhow I am hoping that Marc or someone else can help me resolve this exception. I am trying to implement protobuf-net…
Alex Rice
  • 173
  • 1
  • 8
4
votes
2 answers

Is there a Native Java AOT For Mac OSX?

I wonder if there is a AOT complier(s) for the Mac to compile Java apps into native executables, therefore eliminating the need for a JRE? I have seen commercial examples for both Windows and Linux but haven't been able to find anything for the Mac,…
user427165
4
votes
0 answers

jaotc fails to find classes from java.base

How to setup/run jaotc so it can find standard JDK classes ? Using JDK 9 expiremental AOT compiler to pre-build some of the libraries, many fail for similar reasons. e.g. jaotc --compile-for-tiered --info --output ../aoclib/postgresql-9.4.1208.so…
sinus0
  • 41
  • 1
4
votes
0 answers

@ngtools/webpack error while loading linked npm package - "Consider changing the function expression into an exported function."

I am having issues compiling a linked npm package to run it with the dev-server (I have an extracted webpack config from CLI). The issue occurs since my update to angular 5. Thank you in advance! Error Always this error occurs when trying to compile…
Moritz
  • 174
  • 4
4
votes
2 answers

What differences are there between running monotouch in simulator vs. on device?

Is there any documentation on the difference between the monotouch runtime used in (iPad) Simulator vs. running on an actual device? I've recently had to change some code that resulted in ExecutionEngineException (seemingly unrelated to the one…
Markus Johnsson
  • 3,949
  • 23
  • 30
4
votes
0 answers

Angular 2 lazy load modules using aot and different pipeline

I am working in a big app and we want to have lazyload modules in order to improve the performance, but we want to use AOT (performance) and at the same time we want to keep separate pipelines in order to deploy only the module changed if there is…
AntonioJ
  • 41
  • 2
4
votes
2 answers

ui-router/angular-hybrid not working with AOT / rollup

I am trying to make the ui-router work for an angular hybrid application. It works when using JIT compilation, but when I try to make it work with AOT and rollup, the rollup step fails with an error mesaage: '@uirouter/angular-hybrid' is imported by…
4
votes
0 answers

@ngtools/webpack ngfactory in memory compilation

I know this has been asked in different forms here and also in the angular-cli github, but I couldn't find any helpful answer (and @ngtools/webpack documentation isn't quite complete). To put it simple, I wanted to test AoT with a fresh app created…
user8216236
4
votes
1 answer

Creating AoT compatible Service Factories

I'm trying to create a service factory for a caching service. The major requirement is that a single service can be instanced with a different string each time. The final result will have multiple cache services each defined by a unique…
Raven
  • 1,453
  • 3
  • 18
  • 29
4
votes
0 answers

Angular 2 AOT build error - JavaScript heap out of memory

My Angular 2 app is generated by angular2-webpack-starter. When I run command npm run build:aot to build AOT package, the console shows the following error message: ..... 92% chunk asset optimization 500690 ms: Mark-sweep 1290.1 (1421.8) ->…
Wang Zhengzhang
  • 163
  • 1
  • 3
  • 6
4
votes
0 answers

Angular2 AOT Compilation failed; Resource file not found

To build my angular2 project with AOT, I run this command at first. $ ./node_modules/.bin/ngc -p ./src/ I receive some errors, but I can't resolve it, Error: Compilation failed. Resource file not found:…
Seungwon
  • 276
  • 3
  • 10