- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 24 for systemProperty (0.06 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java
test.systemProperty("es.transport.cname_in_publish_address", "true"); // Set netty system properties to the properties we configure in jvm.options test.systemProperty("io.netty.noUnsafe", "true"); test.systemProperty("io.netty.noKeySetOptimization", "true"); test.systemProperty("io.netty.recycler.maxCapacityPerThread", "0");Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 24 22:14:49 GMT 2021 - 10.4K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/elasticsearch.run.gradle
testClusters.register("runTask") { testDistribution = providers.systemProperty('run.distribution').orElse('default').forUseAtConfigurationTime().get() if (providers.systemProperty('run.distribution').orElse('default').forUseAtConfigurationTime().get() == 'default') { String licenseType = providers.systemProperty("run.license_type").orElse("basic").forUseAtConfigurationTime().get() if (licenseType == 'trial') {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 23 07:45:59 GMT 2021 - 1.8K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/VersionPropertiesLoader.java
"Expected elasticsearch version to be numbers only of the form X.Y.Z but it was: " + elasticsearch ); } String qualifier = providers.systemProperty("build.version_qualifier") .orElse("") .forUseAtConfigurationTime() .get(); if (qualifier.isEmpty() == false) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Aug 09 07:39:30 GMT 2021 - 2.7K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/elasticsearch.bwc-test.gradle
if (project.bwc_tests_enabled) { dependsOn tasks.matching { it.name ==~ /v[0-9\.]+#bwcTest/ } } } tasks.withType(Test).configureEach { onlyIf { project.bwc_tests_enabled } nonInputProperties.systemProperty 'tests.bwc', 'true' } tasks.matching { it.name.equals("check") }.configureEach {dependsOn(bwcTestSnapshots) }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Jun 30 12:11:25 GMT 2021 - 1.2K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/ElasticsearchTestBasePluginFuncTest.groovy
} dependencies { testImplementation 'junit:junit:4.12' } tasks.named('test').configure { nonInputProperties.systemProperty("foo", project.getProperty('foo')) } """ when: def result = gradleRunner("test", '-Dtests.seed=default', '-Pfoo=bar').build() then:Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.7K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/ParallelDetector.java
} return _defaultParallel; } private static boolean isMac(ProviderFactory providers) { return providers.systemProperty("os.name").forUseAtConfigurationTime().getOrElse("").startsWith("Mac"); }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Aug 09 07:39:30 GMT 2021 - 3.6K bytes - Click Count (0) -
build-tools-internal/src/main/resources/forbidden/es-all-signatures.txt
# a system property as a boolean, use # org.elasticsearch.core.Booleans#parseBoolean(java.lang.String) on the result of # java.lang.SystemProperty#getProperty(java.lang.String) instead. If you were not intending to parse # a system property as a boolean, but instead parse a string to a boolean, use
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 15:21:26 GMT 2021 - 3.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/TestWithSslPlugin.java
// Tell the tests we're running with ssl enabled project.getTasks() .withType(RestIntegTestTask.class) .configureEach(runner -> runner.systemProperty("tests.ssl.enabled", "true")); }); project.getPlugins().withType(TestClustersPlugin.class).configureEach(clustersPlugin -> {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.1K bytes - Click Count (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()); }); }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 19 17:06:32 GMT 2026 - 7.6K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/elasticsearch.formatting.gradle
// misbehaviour is detected, and not just suppressed. You can enabled the // option from the command line by running Gradle with `-Dspotless.paddedcell`. if (providers.systemProperty('spotless.paddedcell').forUseAtConfigurationTime().isPresent()) { paddedCell() } } } tasks.named("precommit").configure { dependsOn 'spotlessJavaCheck' } }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 09 18:53:35 GMT 2021 - 9.1K bytes - Click Count (0)