You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/introduction.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,26 +68,26 @@ The core components enable using GraalVM as a runtime platform for programs writ
68
68
* Java HotSpot VM
69
69
* Graal compiler - the top-tier JIT compiler
70
70
* Polyglot API – the APIs for combining programming languages in a shared runtime
71
-
*[GraalVM Updater](../reference-manual/graalvm-updater.md) - a utility to install additional functionalities
71
+
*[GraalVM Updater](reference-manual/graalvm-updater.md) - a utility to install additional functionalities
72
72
73
73
### Additional Components
74
74
GraalVM core installation can be extended with more languages runtimes and utilities.
75
75
76
76
Tools/Utilities:
77
77
78
-
*[Native Image](../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native platform executable.
79
-
*[LLVM toolchain](../reference-manual/llvm/README.md) -- a set of tools and APIs for compiling native programs to bitcode that can be executed on GraalVM.
78
+
*[Native Image](reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native platform executable.
79
+
*[LLVM toolchain](reference-manual/llvm/README.md) -- a set of tools and APIs for compiling native programs to bitcode that can be executed on GraalVM.
80
80
81
81
Runtimes:
82
82
83
-
*[JavaScript runtime](../reference-manual/js/README.md) with JavaScript REPL with the JavaScript interpreter
84
-
*[Node.js](../../reference-manual/js/NodeJS.md) -- the Node.js 16.14.2 runtime for JavaScript
85
-
*[LLVM runtime](../reference-manual/llvm/README.md) with `lli` tool to directly execute programs from LLVM bitcode
86
-
*[Java on Truffle](../reference-manual/java-on-truffle/README.md) -- a JVM implementation built upon the [Truffle framework](../../truffle/docs/README.md) to run Java via a Java bytecode interpreter.
*[JavaScript runtime](reference-manual/js/README.md) with JavaScript REPL with the JavaScript interpreter
84
+
*[Node.js](reference-manual/js/NodeJS.md) -- the Node.js 16.14.2 runtime for JavaScript
85
+
*[LLVM runtime](reference-manual/llvm/README.md) with `lli` tool to directly execute programs from LLVM bitcode
86
+
*[Java on Truffle](reference-manual/java-on-truffle/README.md) -- a JVM implementation built upon the [Truffle framework](../truffle/docs/README.md) to run Java via a Java bytecode interpreter.
Copy file name to clipboardExpand all lines: docs/reference-manual/native-image/guides/optimize-native-executable-with-pgo.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -186,5 +186,4 @@ With PGO you "train" your application for specific workloads and significantly i
186
186
187
187
### Related Documentation
188
188
189
-
- [Improving performance of GraalVM native images with profile-guided optimizations](https://medium.com/graalvm/improving-performance-of-graalvm-native-images-with-profile-guided-optimizations-9c431a834edb)
- [Improving performance of GraalVM native images with profile-guided optimizations](https://medium.com/graalvm/improving-performance-of-graalvm-native-images-with-profile-guided-optimizations-9c431a834edb)
Copy file name to clipboardExpand all lines: docs/security/security-guide.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ Developers can request static initializers that process sensitive information to
111
111
112
112
Native-image provides multiple ways to specify the certificate file used to define the default TrustStore.
113
113
While the default behavior for native-image is to capture and use the default TrustStore from the buildtime host environment, this can be changed at runtime by setting the "javax.net.ssl.trustStore\*" system properties.
114
-
Please see the [documentation](/reference-manual/native-image/CertificateManagement/) for more details.
114
+
See the [documentation](../reference-manual/native-image/CertificateManagement.md) for more details.
115
115
116
116
In addition, developers can run the `native-image` builder in a dedicated environment, such as a container, that does not contain any sensitive information in the first place.
Copy file name to clipboardExpand all lines: docs/tools/visualvm.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ This way your application will handle signals and capture a heap dump when it re
31
31
The guest language REPL process must be started also with the `--jvm` flag to monitor it using VisualVM.
32
32
This functionality is available with [GraalVM Enterprise Edition](https://www.oracle.com/downloads/graalvm-downloads.html).
33
33
It is not available in GraalVM Community Edition.
34
-
See the [Generating Native Heap Dumps](../reference-manual/native-image/HeapDumps.md) page for details on capturing heap dumps from a native image process.
34
+
See the [Generating Native Heap Dumps](../reference-manual/native-image/guides/create-heap-dump-from-native-executable.md) page for details on capturing heap dumps from a native image process.
35
35
36
36
### Analyzing Objects
37
37
Initially the Summary view for the Java heap is displayed.
0 commit comments