Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 24 for systemProperty (0.08 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/RestTestBasePlugin.java

                restIntegTestTask.include("**/*IT.class");
                restIntegTestTask.systemProperty("tests.rest.load_packaged", Boolean.FALSE.toString());
                if (systemProperty(TESTS_REST_CLUSTER) == null) {
                    if (systemProperty(TESTS_CLUSTER) != null || systemProperty(TESTS_CLUSTER_NAME) != null) {
                        throw new IllegalArgumentException(
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Aug 05 18:56:52 GMT 2021
    - 4.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/elasticsearch.fips.gradle

              systemProperty 'java.security.properties', '=${ES_PATH_CONF}/fips_java.security'
              systemProperty 'java.security.policy', '=${ES_PATH_CONF}/fips_java.policy'
              systemProperty 'javax.net.ssl.trustStore', '${ES_PATH_CONF}/cacerts.bcfks'
              systemProperty 'javax.net.ssl.trustStorePassword', 'password'
              systemProperty 'javax.net.ssl.keyStorePassword', 'password'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 21 11:03:02 GMT 2021
    - 4.8K bytes
    - Click Count (0)
  3. 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))
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 19 05:13:29 GMT 2026
    - 18K bytes
    - Click Count (0)
  4. build-logic/src/main/kotlin/okhttp.testing-conventions.gradle.kts

      })
    
      maxParallelForks = Runtime.getRuntime().availableProcessors() * 2
      testLogging {
        exceptionFormat = TestExceptionFormat.FULL
      }
    
      systemProperty("okhttp.platform", platform)
      systemProperty("junit.jupiter.extensions.autodetection.enabled", "true")
    }
    
    tasks.withType<Test>().configureEach {
      environment("OKHTTP_ROOT", rootDir)
    }
    
    plugins.withId("org.jetbrains.kotlin.jvm") {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 07:16:57 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/groovy/elasticsearch.authenticated-testclusters.gradle

     */
    
    import org.elasticsearch.gradle.testclusters.StandaloneRestIntegTestTask
    
    def clusterCredentials = [
            username: providers.systemProperty('tests.rest.cluster.username')
                    .forUseAtConfigurationTime()
                    .getOrElse('test_admin'),
            password: providers.systemProperty('tests.rest.cluster.password')
                    .forUseAtConfigurationTime()
                    .getOrElse('x-pack-test-password')
    ]
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 20 11:25:54 GMT 2021
    - 1.1K bytes
    - Click Count (0)
  6. 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)
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 04 07:24:54 GMT 2024
    - 4.7K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalBwcGitPlugin.java

                    Logger logger = project.getLogger();
                    String bwcBranch = this.gitExtension.getBwcBranch().get();
                    final String refspec = providerFactory.systemProperty("bwc.refspec." + bwcBranch)
                        .orElse(providerFactory.systemProperty("tests.bwc.refspec." + bwcBranch))
                        .getOrElse(remote.get() + "/" + bwcBranch);
    
                    String effectiveRefSpec = maybeAlignedRefSpec(logger, refspec);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 9.9K bytes
    - Click Count (0)
  8. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

                            doFirst {
                                // workaround for https://github.com/gradle/gradle/issues/12247
                                systemProperty("package.cycle.exclude.patterns", excludePatterns.get().joinToString(","))
                            }
                            extensions.findByType<DevelocityTestConfiguration>()?.apply {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 08:11:56 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  9. build-tools-internal/build.gradle

      integTestImplementation "org.xmlunit:xmlunit-core:2.8.2"
    }
    
    tasks.register("integTest", Test) {
      inputs.dir(file("src/testKit")).withPropertyName("testkit dir").withPathSensitivity(PathSensitivity.RELATIVE)
      systemProperty 'test.version_under_test', version
      testClassesDirs = sourceSets.integTest.output.classesDirs
      classpath = sourceSets.integTest.runtimeClasspath
      useJUnitPlatform()
    }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/testfixtures/TestFixturesPlugin.java

                    task,
                    fixtureProject,
                    true,
                    (name, host) -> task.getExtensions().getByType(SystemPropertyCommandLineArgumentProvider.class).systemProperty(name, host)
                );
            }));
    
        }
    
        private void maybeSkipTasks(TaskContainer tasks, Provider<DockerSupportService> dockerSupport, Class<? extends DefaultTask> taskClass) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 29 15:07:50 GMT 2021
    - 10.7K bytes
    - Click Count (0)
Back to Top