Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GrDeprecatedAPIUsage (0.52 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/CompileOptionsTest.groovy

        CompileOptions compileOptions
    
        def setup()  {
            compileOptions = TestUtil.newInstance(CompileOptions, TestUtil.objectFactory())
        }
    
        @SuppressWarnings("GrDeprecatedAPIUsage")
        def "default compile options"() {
            expect:
            compileOptions.debug
            compileOptions.failOnError
            compileOptions.warnings
    
            !compileOptions.deprecation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/AbstractReportTaskIntegrationTest.groovy

     */
    @SuppressWarnings('GrDeprecatedAPIUsage')
    @UnsupportedWithConfigurationCache(
        because = "AbstractReportTask has been deprecated in favor of ProjectBasedReportTask with supports the configuration cache."
    )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 30 18:37:41 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/AbstractReportTaskTest.groovy

                1 * renderer.startProject(p)
                1 * generator.run()
                1 * renderer.completeProject(p)
            }
            1 * renderer.complete()
        }
    
        @SuppressWarnings('GrDeprecatedAPIUsage')
        static class TestReportTask extends AbstractReportTask {
            private Runnable generator
            private ReportRenderer renderer
    
            void setGenerator(Runnable generator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

                @Override
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    //noinspection GrDeprecatedAPIUsage
                    response.setStatus(httpCode, "broken")
                }
            })
        }
    
        private class NoopBuildCacheDescriber implements BuildCacheServiceFactory.Describer {
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            targetDslFixture.assertWrapperFilesNotGenerated()
    
            where:
            [existingScriptDsl, targetScriptDsl] << ScriptDslFixture.scriptDslCombinationsFor(2)
        }
    
        @SuppressWarnings('GrDeprecatedAPIUsage')
        def "#targetScriptDsl build file generation is skipped when part of a multi-project build with non-standard #existingScriptDsl settings file location"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

        }
    
        @SuppressWarnings("GrDeprecatedAPIUsage")
        static class SimpleTask extends DefaultTask {
            @Input
            String inputString
            @InputFile
            File inputFile
            @InputDirectory
            File inputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top