Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for noDeprecationChecks (0.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                .startLauncherInDebugger(opts -> debugLauncher.copyTo(opts))
                .withProfiler(profiler)
                .withForceInteractive(interactive);
    
            if (!checkDeprecations) {
                executer.noDeprecationChecks();
            }
    
            if (durationMeasurement != null) {
                executer.withDurationMeasurement(durationMeasurement);
            }
    
            if (consoleType != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

        }
    
        def "reports build listener registration on #registrationPoint"() {
    
            given:
            buildFile << code
    
            when:
            executer.noDeprecationChecks()
            configurationCacheFails 'help'
    
            then:
            outputContains("Configuration cache entry discarded with 1 problem.")
            problems.assertFailureHasProblems(failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top