-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refine warmup flexible warmup Update core/deployment/src/main/java/io/quarkus/deployment/CracConfig.java Co-authored-by: Clement Escoffier <[email protected]> Update core/deployment/src/main/java/io/quarkus/deployment/CracConfig.java Co-authored-by: Clement Escoffier <[email protected]> Update core/deployment/src/main/java/io/quarkus/deployment/CracConfig.java Co-authored-by: Clement Escoffier <[email protected]> Update core/deployment/src/main/java/io/quarkus/deployment/CracConfig.java Co-authored-by: Clement Escoffier <[email protected]> Update core/deployment/src/main/java/io/quarkus/deployment/CracConfig.java Co-authored-by: Clement Escoffier <[email protected]> Generate the application class list when Crac is enabled (#137) fixes Revert ExtensionLoader.java revert ExecutionTime Revert MainBytecodeRecorderBuildItem Revert LoggingResourceProcessor Revert BootstrapConfig rollback more files Fix LambdaProcessor revert more remove WARMUP_INIT fullWarmup = true
- Loading branch information
1 parent
dcb2dbe
commit b16b992
Showing
14 changed files
with
112 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 11 additions & 2 deletions
13
...loyment/src/main/java/io/quarkus/deployment/builditem/PreloadClassesEnabledBuildItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
package io.quarkus.deployment.builditem; | ||
|
||
import io.quarkus.builder.item.MultiBuildItem; | ||
import io.quarkus.builder.item.SimpleBuildItem; | ||
|
||
/** | ||
* Extension build steps can produce this if preloading classes is enabled | ||
*/ | ||
public final class PreloadClassesEnabledBuildItem extends MultiBuildItem { | ||
public final class PreloadClassesEnabledBuildItem extends SimpleBuildItem { | ||
private final boolean initialize; | ||
|
||
public PreloadClassesEnabledBuildItem(boolean initialize) { | ||
this.initialize = initialize; | ||
} | ||
|
||
public boolean doInitialize() { | ||
return initialize; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.