- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for systemProperty (0.13 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
fun Project.systemProperty(propertyName: String) = providers.systemProperty(propertyName) fun Project.environmentVariable(propertyName: String) = providers.environmentVariable(propertyName) fun Project.propertyFromAnySource(propertyName: String) = gradleProperty(propertyName) .orElse(systemProperty(propertyName)) .orElse(environmentVariable(propertyName))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 09 08:19:42 UTC 2024 - 16.9K bytes - Viewed (0) -
build.gradle.kts
}) maxParallelForks = Runtime.getRuntime().availableProcessors() * 2 testLogging { exceptionFormat = TestExceptionFormat.FULL } systemProperty("okhttp.platform", platform) systemProperty("junit.jupiter.extensions.autodetection.enabled", "true") } // https://publicobject.com/2023/04/16/read-a-project-file-in-a-kotlin-multiplatform-test/
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Jun 23 17:02:02 UTC 2024 - 9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy
args destDir.absolutePath jvmArgs '-Xmx1024m' classpath = xslClasspath systemProperty 'xslthl.config', xslthlConfigFile systemProperty 'org.apache.xerces.xni.parser.XMLParserConfiguration', 'org.apache.xerces.parsers.XIncludeParserConfiguration' } } } as Runnable) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 05 19:36:14 UTC 2023 - 4.7K bytes - Viewed (0) -
mockwebserver-junit5/build.gradle.kts
id("binary-compatibility-validator") } tasks { jar { manifest { attributes("Automatic-Module-Name" to "mockwebserver3.junit5") } } test { useJUnitPlatform() systemProperty("junit.jupiter.extensions.autodetection.enabled", "true") } } dependencies { api(projects.mockwebserver3) api(libs.junit.jupiter.api) compileOnly(libs.animalsniffer.annotations)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 833 bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts
testTask.configure { testClassesDirs += sharedArchTestClasses.filter { it.isDirectory } classpath += sourceSets["main"].output.classesDirs systemProperty("package.cycle.exclude.patterns", packageCyclesExtension.excludePatterns.get().joinToString(",")) extensions.findByType<DevelocityTestConfiguration>()?.apply {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jul 03 16:00:02 UTC 2024 - 3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java
task.getInputs().property("systemProperties", Collections.emptyMap()); // TODO: This breaks the provider task.systemProperty("org.gradle.docs.releasenotes.rendered", extension.getReleaseNotes().getRenderedDocumentation().get().getAsFile()); }); }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 17 20:04:00 UTC 2024 - 7.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/MoreExecutors.java
if (System.getProperty("com.google.appengine.runtime.environment") == null) { return false; } try { Class.forName("com.google.appengine.api.utils.SystemProperty"); } catch (ClassNotFoundException e) { return false; } try { // If the current environment is null, we're not inside AppEngine.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 44.1K bytes - Viewed (0)