Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getProp3 (0.13 sec)

  1. testing/performance/src/templates/java-source/Production.java

            List<String> strings = Arrays.asList(p, this.getProperty());
            int len = 0;
            for (String s: strings) {
                len += s.length();
                <% propertyCount.times { %>
                len += o.getProp${it}().length();
                <%}%>
            }
            return len>10;
        }
        <% } %>
    
        public ${productionClassName}(){
            this.property = null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/AbstractBean.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    public abstract class AbstractBean {
        abstract String getProp1();
    
        abstract void setProp1(String value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 775 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

        def "properties defined in project build script are not visible to descendant projects"() {
            createDirs("child1")
            settingsFile << "include 'child1'"
            buildFile << """
    def getProp1() {
        return "abc"
    }
    
    @groovy.transform.Field
    String prop2
    
    @groovy.transform.Field
    String prop3 = "abc"
    
    int prop4 = 12
    
    prop2 = prop1
    
    assert prop1 == "abc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/project-with-source/Production.java

            this.property = param;
        }
    
        public String getProperty() {
            return property;
        }
    <% propertyCount.times { %>
        private String prop${it};
    
        public String getProp${it}() {
            return prop${it};
        }
    
        public void setProp${it}(String value) {
            prop${it} = value;
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 467 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DefaultInstantiationSchemeTest.groovy

            Impl() {
                throw new RuntimeException("should not be called")
            }
        }
    
        static abstract class WithServices {
            @Inject
            abstract String getProp()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/AbstractOptionIntegrationSpec.groovy

                        this.prop2 = prop2;
                    }
                    
                    @Option(option = "prop3", description = "Configures command line option 'prop3'.")
                    public void setProp3(String prop3) {
                        this.prop3 = prop3;
                    }
                    
                    @TaskAction
                    public void renderOptionValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 09:40:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top