Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 112 for methodName2 (0.21 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

            private final String containingType;
            private final String methodName;
            private final String descriptor;
    
            private AccessorKey(String containingType, String methodName, String descriptor) {
                this.containingType = containingType;
                this.methodName = methodName;
                this.descriptor = descriptor;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/test/ProviderInternalJvmTestRequest.java

                return false;
            }
            return !(methodName != null ? !methodName.equals(that.methodName) : that.methodName != null);
        }
    
        @Override
        public int hashCode() {
            int result = className != null ? className.hashCode() : 0;
            result = 31 * result + (methodName != null ? methodName.hashCode() : 0);
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java

         */
        public NoSuchMethodRuntimeException(final Class<?> targetClass, final String methodName, final Class<?>[] argTypes,
                final Throwable cause) {
            super("ECL0057", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, argTypes)), cause);
            this.targetClass = targetClass;
            this.methodName = methodName;
            this.argTypes = argTypes;
        }
    
        /**
         * ターゲットクラスを返します。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestIdProvider.groovy

    class PerformanceTestIdProvider implements TestRule {
    
        private testSpec
        private String methodName
        private String className
    
        PerformanceTestIdProvider() {}
    
        @Override
        Statement apply(Statement base, Description description) {
            methodName = description.methodName
            className = description.className
            updateId()
            return base
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/features/withstaticreference/WithExtensionReferencesExtra.java

    public class WithExtensionReferencesExtra implements RequestExtra {
        public final Type ownerType;
        public final String methodName;
    
        public WithExtensionReferencesExtra(Type ownerType, String methodName) {
            this.ownerType = ownerType;
            this.methodName = methodName;
        }
    
        public static class ProducedSynthetically implements RequestExtra {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

            then:
            // 2 test class + 2 test method events
            events.testClassesAndMethods.size() == 4
            assertTestExecuted(className: 'example2.MyOtherTest', methodName: 'bar', task: ':secondTest')
            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
    
            when:
            events.clear()
            stdout.reset() // we are interested in the output of the second build only
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

        }
    
        private static boolean isPrefixable(String methodName, String prefix) {
            return methodName.startsWith(prefix) && methodName.length() > prefix.length() && Character.isUpperCase(methodName.charAt(prefix.length()));
        }
    
        private static String getPropertyName(String methodName) {
            if (methodName.startsWith("get")) {
                return getPropertyName(methodName, "get");
            } else if (methodName.startsWith("is")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateAssemblerBaseNamesTestApp.groovy

            []
        }
    
        protected def getAsmSource(String methodName) {
            if (toolChain.isVisualCpp()) {
                return """
    .386
    .model    flat
    
    PUBLIC    _${methodName}
    _TEXT     SEGMENT
    _${methodName}    PROC
    mov    eax, DWORD PTR 4[esp]
    add    eax, DWORD PTR 8[esp]
    ret    0
    _${methodName}    ENDP
    _TEXT   ENDS
    END
    """
            }else{
                return """
    .text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/AbstractMutationGuard.java

        @Override
        public void assertMutationAllowed(String methodName, Object target) {
            if (!isMutationAllowed()) {
                throw createIllegalStateException(new DslObject(target).getPublicType().getConcreteClass(), methodName, target);
            }
        }
    
        @Override
        public <T> void assertMutationAllowed(String methodName, T target, Class<T> targetType) {
            if (!isMutationAllowed()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 21:58:11 UTC 2018
    - 2.3K bytes
    - Viewed (0)
Back to top