Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for runIgnoringInputs (0.23 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/AbstractDevelocityInputIgnoringServiceIntegrationTest.groovy

            plugin.publishDummyPlugin(executer)
        }
    
        abstract String runIgnoringInputs(String code);
    
        @Requires(IntegTestPreconditions.IsConfigCached)
        def "configuration inputs are can be ignored"() {
            def configurationCache = new ConfigurationCacheFixture(this)
            given:
            buildFile << """
                ${runIgnoringInputs('println "backgroundJob.property = ${System.getProperty("property")}"')}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginUnsafeConfigurationServiceIntegrationTest.groovy

     */
    
    package org.gradle.internal.enterprise
    
    class DevelocityPluginUnsafeConfigurationServiceIntegrationTest extends AbstractDevelocityInputIgnoringServiceIntegrationTest {
        @Override
        String runIgnoringInputs(String code) {
            """
                def unsafeService = (gradle.extensions.serviceRef.get()._requiredServices.unsafeConfigurationService)
                unsafeService.withConfigurationInputTrackingDisabled {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutorsIntegrationTest.groovy

        @Rule
        BlockingHttpServer httpServer = new BlockingHttpServer()
    
        @Override
        String runIgnoringInputs(String code) {
            """
                def executors = ${executors}
                def future = ${CompletableFuture.name}.runAsync({
                    ${code}
                }, executors.userJobExecutor)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top