Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for methodDescription (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodDescription.java

                Joiner.on(", ").appendTo(sb, parameterTypes);
                sb.append(")");
            }
    
            return sb.toString();
        }
    
        public static MethodDescription name(String name) {
            return new MethodDescription(name);
        }
    
        public static MethodDescription of(Method method) {
            return name(method.getName())
                    .owner(method.getDeclaringClass())
                    .returns(method.getGenericReturnType())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodDescriptionTest.groovy

            expect:
            MethodDescription.name("a").toString() == "a"
            MethodDescription.name("a").returns(String).toString() == "java.lang.String a"
            MethodDescription.name("a").returns(String).takes().toString() == "java.lang.String a()"
            MethodDescription.name("a").returns(String).owner(String).takes().toString() == "java.lang.String java.lang.String#a()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/FormattingValidationProblemCollector.java

            }
        }
    
        @Override
        public void add(Method method, String role, String problem) {
            MethodDescription description = MethodDescription.name(method.getName())
                    .takes(method.getGenericParameterTypes());
            StringBuilder message = new StringBuilder("Method ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/AbstractAnnotationModelRuleExtractorTest.groovy

     */
    
    package org.gradle.platform.base.internal.registry
    
    import org.gradle.internal.Factory
    import org.gradle.internal.reflect.JavaReflectionUtil
    import org.gradle.internal.reflect.MethodDescription
    import org.gradle.model.InvalidModelRuleDeclarationException
    import org.gradle.model.internal.core.ModelAction
    import org.gradle.model.internal.core.ModelActionRole
    import org.gradle.model.internal.core.ModelPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    private void testAborted(org.junit.runner.notification.RunNotifier, org.junit.runner.Description, Throwable); protected TestMethod wrapMethod(reflect.Method); protected String testName(reflect.Method); protected org.junit.runner.Description methodDescription(reflect.Method); protected annotation.Annotation[] testAnnotations(reflect.Method); public void filter(org.junit.runner.manipulation.Filter) throws org.junit.runner.manipulation.NoTestsRemainExcepti; public void sort(org.junit.runner.manipulation.Sorter);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top