Package-level declarations

Types

Link copied to clipboard
abstract class JavaAgentDependenciesExtension @Inject constructor(project: Project, foundryProperties: FoundryProperties)

An extension that simplifies dependency configuration for (test) Java agents in Gradle projects.

Link copied to clipboard
@JsonClass(generateAdapter = true, generator = "sealed:type")
sealed class Thermals
Link copied to clipboard
@JsonClass(generateAdapter = true)
data class ThermalsData(val logs: List<ThermLog>) : Thermals
Link copied to clipboard
@JsonClass(generateAdapter = true)
data class ThermLog(val timestamp: LocalDateTime, val schedulerLimit: Int, val availableCpus: Int, val speedLimit: Int)