Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for setProp3 (0.3 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/AbstractOptionIntegrationSpec.groovy

                    public void setProp1(String prop1) {
                        this.prop1 = prop1;
                    }
                    
                    @Option(option = "prop2", description = "Configures command line option 'prop2'.")
                    public void setProp2(Boolean prop2) {
                        this.prop2 = prop2;
                    }
                    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 09:40:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

                double]
        }
    
        @Managed
        static interface MultipleProps {
            String getProp1();
    
            void setProp1(String string);
    
            String getProp2();
    
            void setProp2(String string);
    
            String getProp3();
    
            void setProp3(String string);
        }
    
        def "multiple properties"() {
            when:
            def properties = extract(MultipleProps).properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            boolean isProp1();
    
            void setProp1(boolean value);
    
            int getProp2();
    
            void setProp2(int value);
    
            byte getProp3();
    
            void setProp3(byte value);
    
            short getProp4();
    
            void setProp4(short value);
    
            long getProp5();
    
            void setProp5(long value);
    
            double getProp6();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

            String getProp() {
                return null
            }
    
            boolean isProp() {
                return false
            }
    
            void setProp(String value) {
            }
    
            void setProp(int value) {
            }
    
            void setProp(Object value) {
            }
        }
    
        class SubClass extends SomeClass {
            Long other
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. docs/contribute/debug_logging.md

    for whichever features you need:
    
    ```
    OkHttpDebugLogging.enableHttp2()
    OkHttpDebugLogging.enableTaskRunner()
    ```
    
    ### Activating on Android
    
    ```
    $ adb shell setprop log.tag.okhttp.Http2 DEBUG
    $ adb shell setprop log.tag.okhttp.TaskRunner DEBUG
    $ adb logcat '*:E' 'okhttp.Http2:D' 'okhttp.TaskRunner:D'
    ```
    
    ### HTTP/2 Frame Logging
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratedManagedStateTest.groovy

            def bean = create(InterfacePrimitiveBean)
    
            expect:
            !bean.prop1
            bean.setProp1(true)
            bean.prop1
    
            bean.prop2 == 0
            bean.setProp2(12)
            bean.prop2 == 12
        }
    
        def canConstructInstanceOfInterfaceWithFileCollectionGetter() {
            def projectDir = tmpDir.testDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/AbstractBean.java

     * 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)
  8. testing/performance/src/templates/project-with-source/Production.java

            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)
  9. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithParameterizedTypes.groovy

    package org.gradle.test
    
    class GroovyClassWithParameterizedTypes {
        Set<CombinedInterface> setProp
    
        Map<CombinedInterface, GroovyClassWithParameterizedTypes> mapProp
    
        List<?> wildcardProp
    
        List<? extends CombinedInterface> upperBoundProp
    
        List<? super CombinedInterface> lowerBoundProp
    
        List<? super Set<? extends Map<?, CombinedInterface[]>>>[] nestedProp
    
        static <T> T paramMethod(T param) {
            null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 442 bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/Production.java

            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: Mon Jul 17 10:38:06 UTC 2023
    - 467 bytes
    - Viewed (0)
Back to top