Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for configureGradleLifecycle (0.56 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

                class SomeBean {
                    ${type} value
                }
    
                enum SomeEnum {
                    One, Two
                }
    
                def configureGradleLifecycle() {
                    SomeBean bean = new SomeBean()
                    ${type} value = ${reference}
                    bean.value = ${reference}
                    gradle.lifecycle.beforeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleUnsupportedTypesIntegrationTest.groovy

                }
    
                class SomeBean {
                    private ${baseType.name} badReference
                }
    
                def configureGradleLifecycle() {
                    ${baseType.name} badReference
                    final bean = new SomeBean()
                    final beanWithSameType = new SomeBean()
    
                    badReference = ${reference}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top