Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doStuff2 (0.11 sec)

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

            public void setProp(String prop) {
                super.setProp(prop);
            }
    
            @Override
            public String doStuff(String value) {
                return super.doStuff(value);
            }
    
            @Override
            public void doStuff(Action<String> action) {
                action.execute("overloaded");
            }
        }
    
        public static class ParentBean {
    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. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * be read and updated. Only the initial declaration that needs to be done via the namespace.
     *
     * <pre>
     * project.ext.prop1 = "foo"
     * task doStuff {
     *     ext.prop2 = "bar"
     * }
     * subprojects { ext.${prop3} = false }
     * </pre>
     *
     * Reading extra properties is done through the &quot;ext&quot; or through the owning object.
     *
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top