Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 261 for getStep (0.12 sec)

  1. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         *            プロパティの型
         * @return プロパティの型
         */
        <T> Class<T> getPropertyType();
    
        /**
         * getterメソッドを返します。
         *
         * @return getterメソッド
         */
        Method getReadMethod();
    
        /**
         * getterメソッドを持っているかどうか返します。
         *
         * @return getterメソッドを持っているかどうか
         */
        boolean hasReadMethod();
    
        /**
         * setterメソッドを返します。
         *
         * @return setterメソッド
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/ManagedProperty.java

     * types declaring the struct only specify the property via a getter, then the managed property will be read-only. However, if
     * even one of the view types declare a setter for the property, it will be a read-write property. </p>
     *
     * <p>Different views can declare the same getter with different return types. In such a case the type of the managed property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

    package org.gradle.integtests
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class GroovyToJavaConversionIntegrationTest extends AbstractIntegrationSpec {
    
        def "For every boolean is getter there is a get Getter"() {
            given:
            executer.requireDaemon().requireIsolatedDaemons() // We need to fork - if we do not fork Class-Decoration does not happen
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectUndecoratedTest.groovy

        ClassGenerator generator = AsmBackedClassGenerator.injectOnly([], Stub(PropertyRoleAnnotationHandler), [], new TestCrossBuildInMemoryCacheFactory(), 0)
    
        def "returns original class when class is not abstract and no service getter methods present"() {
            expect:
            generator.generate(Bean).generatedClass == Bean
        }
    
        def "can create instance of final class when a subclass is not required"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassVisitorScope.java

        }
    
        /**
         * Adds a getter that returns the value that the given code leaves on the top of the stack.
         */
        protected void addGetter(String methodName, Type returnType, String methodDescriptor, BytecodeFragment body) {
            addGetter(methodName, returnType, methodDescriptor, null, body);
        }
    
        /**
         * Adds a getter that returns the value that the given code leaves on the top of the stack.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/mutableManagedProperty/groovy/buildSrc/src/main/java/Download.java

    import org.gradle.api.tasks.TaskAction;
    
    import java.net.URI;
    
    // tag::download[]
    public abstract class Download extends DefaultTask {
        @Input
        public abstract Property<URI> getUri(); // abstract getter of type Property<T>
    
        @TaskAction
        void run() {
            System.out.println("Downloading " + getUri().get()); // Use the `uri` property
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 488 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/ClassAnalysisUtils.java

            char[] charBuffer = new char[reader.getMaxStringLength()];
            for (int i = 1; i < reader.getItemCount(); i++) {
                int itemOffset = reader.getItem(i);
                // see https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4
                if (itemOffset > 0 && reader.readByte(itemOffset - 1) == 7) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Bear' field 'claws' without corresponding getter has been annotated with @Harmless.
    
    Reason: Annotations on fields are only used if there's a corresponding getter for the field.
    
    Possible solutions:
      1. Add a getter for field 'claws'.
      2. Remove the annotations on 'claws'.
    
    ${validationMessage("ignored_annotations_on_field")}
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  9. pkg/registry/core/serviceaccount/storage/token.go

    func (r *TokenREST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    type TokenREST struct {
    	svcaccts             rest.Getter
    	pods                 rest.Getter
    	secrets              rest.Getter
    	nodes                rest.Getter
    	issuer               token.TokenGenerator
    	auds                 authenticator.Audiences
    	audsSet              sets.String
    	maxExpirationSeconds int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/readOnlyNestedProperty/groovy/buildSrc/src/main/java/Download.java

    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.TaskAction;
    
    // tag::download[]
    public abstract class Download extends DefaultTask {
        @Nested
        public abstract Resource getResource(); // Use an abstract getter method annotated with @Nested
    
        @TaskAction
        void run() {
            // Use the `resource` property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 522 bytes
    - Viewed (0)
Back to top