Skip to content

Commit 123151e

Browse files
committed
Sync documentation of main branch
1 parent a29067b commit 123151e

File tree

5 files changed

+27
-5
lines changed

5 files changed

+27
-5
lines changed

_generated-doc/main/config/quarkus-all-config.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84735,7 +84735,7 @@ Environment variable: `+++QUARKUS_SCHEDULER_START_MODE+++`
8473584735
endif::add-copy-button-to-env-var[]
8473684736
--
8473784737
a|tooltip:normal[The scheduler is not started unless a `io.quarkus.scheduler.Scheduled` business method is found.], tooltip:forced[The scheduler will be started even if no scheduled business methods are found. This is necessary for "pure" programmatic scheduling.], tooltip:halted[Just like the `forced` mode but the scheduler will not start triggering jobs until `Scheduler++#++resume()` is called. This can be useful to run some initialization logic that needs to be performed before the scheduler starts.]
84738-
|
84738+
|tooltip:normal[The scheduler is not started unless a {@link io.quarkus.scheduler.Scheduled} business method is found.]
8473984739

8474084740

8474184741
h|[.extension-name]##Schema Registry - DevService##

_generated-doc/main/config/quarkus-scheduler.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Environment variable: `+++QUARKUS_SCHEDULER_START_MODE+++`
154154
endif::add-copy-button-to-env-var[]
155155
--
156156
a|tooltip:normal[The scheduler is not started unless a `io.quarkus.scheduler.Scheduled` business method is found.], tooltip:forced[The scheduler will be started even if no scheduled business methods are found. This is necessary for "pure" programmatic scheduling.], tooltip:halted[Just like the `forced` mode but the scheduler will not start triggering jobs until `Scheduler++#++resume()` is called. This can be useful to run some initialization logic that needs to be performed before the scheduler starts.]
157-
|
157+
|tooltip:normal[The scheduler is not started unless a {@link io.quarkus.scheduler.Scheduled} business method is found.]
158158

159159
|===
160160

_generated-doc/main/config/quarkus-scheduler_quarkus.scheduler.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Environment variable: `+++QUARKUS_SCHEDULER_START_MODE+++`
154154
endif::add-copy-button-to-env-var[]
155155
--
156156
a|tooltip:normal[The scheduler is not started unless a `io.quarkus.scheduler.Scheduled` business method is found.], tooltip:forced[The scheduler will be started even if no scheduled business methods are found. This is necessary for "pure" programmatic scheduling.], tooltip:halted[Just like the `forced` mode but the scheduler will not start triggering jobs until `Scheduler++#++resume()` is called. This can be useful to run some initialization logic that needs to be performed before the scheduler starts.]
157-
|
157+
|tooltip:normal[The scheduler is not started unless a {@link io.quarkus.scheduler.Scheduled} business method is found.]
158158

159159
|===
160160

_generated-doc/main/infra/quarkus-all-build-items.adoc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2030,10 +2030,30 @@ _No Javadoc found_
20302030

20312031
_No Javadoc found_
20322032

2033+
`boolean constructors`
2034+
2035+
_No Javadoc found_
2036+
2037+
`boolean methods`
2038+
2039+
_No Javadoc found_
2040+
2041+
`boolean fields`
2042+
2043+
_No Javadoc found_
2044+
20332045
`boolean serialization`
20342046

20352047
_No Javadoc found_
20362048

2049+
`boolean unsafeAllocated`
2050+
2051+
_No Javadoc found_
2052+
2053+
`boolean ignoreNested`
2054+
2055+
_No Javadoc found_
2056+
20372057

20382058

20392059

_versions/main/guides/native-reference.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2293,8 +2293,10 @@ One can see which Mandrel version was used to generate a binary by inspecting th
22932293

22942294
[source,bash]
22952295
----
2296-
$ strings target/debugging-native-1.0.0-SNAPSHOT-runner | grep GraalVM
2297-
com.oracle.svm.core.VM=GraalVM 22.0.0.2-Final Java 11 Mandrel Distribution
2296+
$ strings target/debugging-native-1.0.0-SNAPSHOT-runner | \
2297+
grep -e 'com.oracle.svm.core.VM=' -e 'com.oracle.svm.core.VM.Java.Version' -F
2298+
com.oracle.svm.core.VM.Java.Version=21.0.5
2299+
com.oracle.svm.core.VM=Mandrel-23.1.5.0-Final
22982300
----
22992301

23002302
=== How do I enable GC logging in native executables?

0 commit comments

Comments
 (0)