Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 97 for methodName2 (0.19 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

        private static String getPropertyName(String methodName) {
            if (methodName.startsWith("is") && methodName.length() > 2 && Character.isUpperCase(methodName.charAt(2))) {
                return Character.toLowerCase(methodName.charAt(2)) + methodName.substring(3);
            } else if ((methodName.startsWith("get") || methodName.startsWith("set")) && methodName.length() > 3 && Character.isUpperCase(methodName.charAt(3))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java

        private final String methodName;
    
        /**
         * {@link MethodNotStaticRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param methodName
         *            メソッド名
         */
        public MethodNotStaticRuntimeException(final Class<?> targetClass, final String methodName) {
            super("ECL0100", asArray(targetClass.getName(), methodName));
            this.targetClass = targetClass;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/BroadcastDispatch.java

            private final String methodName;
            private final Action<Object> action;
    
            ActionInvocationHandler(String methodName, Action<Object> action) {
                this.methodName = methodName;
                this.action = action;
            }
    
            @Override
            public void dispatch(MethodInvocation message) {
                if (message.getMethodName().equals(methodName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:00:00 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

        def "knows if test matches class"() {
            expect:
            matcher(input, [], []).matchesTest(className, methodName) == match
            matcher([], [], input).matchesTest(className, methodName) == match
    
            where:
            input                    | className                 | methodName            | match
            ["FooTest"]              | "FooTest"                 | "whatever"            | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/internal/DefaultJvmTestOperationDescriptor.java

        private final String className;
        private final String methodName;
    
        public DefaultJvmTestOperationDescriptor(
            InternalJvmTestDescriptor internalJvmTestDescriptor,
            OperationDescriptor parent,
            JvmTestKind jvmTestKind,
            String suiteName,
            String className,
            String methodName
        ) {
            super(internalJvmTestDescriptor, parent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeRequestExtra.java

            DeprecationSpec deprecationSpec,
            BinaryCompatibility binaryCompatibility
        ) {
            this.propertyName = propertyName;
            this.methodName = methodName;
            this.methodDescriptor = methodDescriptor;
            this.propertyType = propertyType;
            this.isFluentSetter = isFluentSetter;
            this.implementationClassName = implementationClassName;
            this.interceptedPropertyName = interceptedPropertyName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:31:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        @Override
        public MethodDesc[] getMethodDescs(final String methodName) {
            assertArgumentNotEmpty("methodName", methodName);
    
            final MethodDesc[] methodDescs = methodDescsCache.get(methodName);
            if (methodDescs == null) {
                throw new MethodNotFoundRuntimeException(beanClass, methodName, null);
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/BeanDesc.java

         *
         * @param methodName
         *            メソッド名。{@literal null}や空文字列であってはいけません
         * @param paramTypes
         *            メソッドの引数型の並び
         * @return 引数の型に応じた{@link MethodDesc}
         */
        MethodDesc getMethodDescNoException(String methodName, Class<?>... paramTypes);
    
        /**
         * 引数に適合する{@link MethodDesc}を返します。
         *
         * @param methodName
         *            メソッド名。{@literal null}や空文字列であってはいけません
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

            return invokeIntercepted(object, INVOKE_METHOD, methodName, argsForInterceptor, () -> adaptee.invokeMethod(object, methodName, arguments));
        }
    
        @Override
        public Object invokeMethod(Object object, String methodName, Object[] arguments) {
            return invokeIntercepted(object, INVOKE_METHOD, methodName, arguments, () -> adaptee.invokeMethod(object, methodName, arguments));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

            }
            return includePatterns;
        }
    
        public boolean matchesTest(String className, String methodName) {
            return matchesPattern(buildScriptIncludePatterns, className, methodName)
                && matchesPattern(commandLineIncludePatterns, className, methodName)
                && !matchesExcludePattern(className, methodName);
        }
    
        public boolean mayIncludeClass(String fullQualifiedClassName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top