- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 140 for daemon (0.12 sec)
-
.teamcity/src/main/kotlin/common/performance-test-extensions.kt
const val individualPerformanceTestArtifactRules = """ testing/*/build/test-results-*.zip => results testing/*/build/tmp/**/log.txt => failure-logs testing/*/build/tmp/**/profile.log => failure-logs testing/*/build/tmp/**/daemon-*.out.log => failure-logs """ // to avoid pathname too long error fun BuildSteps.substDirOnWindows(os: Os) { if (os == Os.WINDOWS) { script { name = "SETUP_VIRTUAL_DISK_FOR_PERF_TEST"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jun 03 03:39:03 UTC 2024 - 3.8K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
+ ").*"; } static String generateLeakingProcessKillPattern(String rootProjectDir) { String kotlinCompilerDaemonPattern = "(?:" + quote("-Dkotlin.environment.keepalive") + ".+org\\.jetbrains\\.kotlin\\.daemon\\.KotlinCompileDaemon)"; String quotedRootProjectDir = quote(rootProjectDir); String perfTestClasspathPattern = "(?:-cp.+\\\\build\\\\tmp\\\\performance-test-files.+?" + GRADLE_MAIN_CLASS_PATTERN_STR + ")";
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.6K bytes - Viewed (0) -
architecture/build-state-model.md
# Build state model The Gradle daemon tracks state for various elements. These are arranged in a hierarchy: ```mermaid graph TD process["build process"] session["build session"] process --> session build_tree["build tree"] session --> build_tree build1["root build"] build_tree --> build1 project1["root project"] build1 --> project1 project2["project"] build1 --> project2
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed May 22 13:39:49 UTC 2024 - 3.4K bytes - Viewed (0) -
.teamcity/test-buckets.json
"name":"TestDistribution" }, "subprojects":[ "plugin-use", "build-cache-example-client", "report-rendering", "precondition-tester", "tooling-api-builders", "daemon-services", "hashing", "service-registry-builder", "base-services-groovy", "declarative-dsl-internal-utils", "worker-main" ] }, { "parallelizationMethod":{
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 08 11:14:16 UTC 2024 - 87.8K bytes - Viewed (0) -
architecture/standards/0004-use-a-platform-architecture.md
It is made up of 3 architecture modules: - **Runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend. - **Configuration**: Allows the build structure and work, such as tasks, to be specified. This includes the project model, the DSL and so on.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sun Feb 25 22:19:29 UTC 2024 - 4.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt
@JvmField internal val UTC: TimeZone = TimeZone.getTimeZone("GMT")!! internal fun threadFactory( name: String, daemon: Boolean, ): ThreadFactory = ThreadFactory { runnable -> Thread(runnable, name).apply { isDaemon = daemon } } internal fun HttpUrl.toHostHeader(includeDefaultPort: Boolean = false): String { val host = if (":" in host) { "[$host]"
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon May 13 13:42:37 UTC 2024 - 10.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java
private UncaughtExceptionHandlers() {} /** * Returns an exception handler that exits the system. This is particularly useful for the main * thread, which may start up other, non-daemon threads, but fail to fully initialize the * application successfully. * * <p>Example usage: * * <pre> * public static void main(String[] args) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 2.8K bytes - Viewed (0) -
architecture/platforms.md
It is made up of 3 architecture modules: - **core-runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu May 02 06:42:46 UTC 2024 - 5.4K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
logger.lifecycle("Removing old cache directory : $stateDir") delete { delete(stateDir) } } } } } } /** * Clean up daemon log files produced in integration tests. */ fun FileSystemOperations.removeDaemonLogFiles(dir: Directory) { if (dir.asFile.isDirectory) { val daemonLogFiles = dir.asFileTree.matching {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 4.4K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt
else -> actualBranch } /** * The build environment. * * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected, * since this whole object is kept in the classloader between builds. * Anything that changes must be in a val with a get() method that recomputes the value each time. */
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 09 08:19:42 UTC 2024 - 4.9K bytes - Viewed (0)