Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for another_cop (0.09 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            assertThat(call("{ it.prop }", bean), equalTo((Object) "value2"));
    
            call("{ it.ext.anotherProp = 12 }", bean);
            assertThat(bean.getAsDynamicObject().getProperty("anotherProp"), equalTo((Object) 12));
            assertThat(call("{ it.anotherProp }", bean), equalTo((Object) 12));
        }
    
        @Test
        public void constructorCanCallGetter() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            buildFile << """
                class BrokenTaskType extends DefaultTask {
                    @Internal final prop = project
                    @Internal final anotherProp = project.configurations
                }
    
                task problems {
                    inputs.property 'brokenProperty', project
                    inputs.property 'otherBrokenProperty', project
                }
    
    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