Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 206 for methodName2 (0.31 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultProjectDescriptorTest.groovy

            descriptor.setProjectDescriptorRegistry(registry)
    
            when:
            descriptor.name = "newName"
    
            then:
            1 * registry.changeDescriptorPath(Path.path(Project.PATH_SEPARATOR + testName.methodName), Path.path(Project.PATH_SEPARATOR + "newName"))
            descriptor.name == "newName"
        }
    
        def "can set relative project directory"() {
            given:
            def descriptor = projectDescriptor()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 03:33:31 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassVisitorScope.java

         */
        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)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/IncrementalTaskAction.java

        }
    
        @Override
        public void clearInputChanges() {
            this.inputChanges = null;
        }
    
        @Override
        protected void doExecute(Task task, String methodName) {
            JavaMethod.of(task, Object.class, methodName, InputChanges.class).invoke(task, inputChanges);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/MutationGuard.java

        /**
         * Throws exception when mutation is not allowed.
         *
         * @param methodName the method name the assertion is testing
         * @param target the target object been asserted on
         */
        void assertMutationAllowed(String methodName, Object target);
    
        <T> void assertMutationAllowed(String methodName, T target, Class<T> targetType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 21:58:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/GroovyStackTraceSpecTest.groovy

                throw new Exception("boom")
            }
        }
    
        private static void stackTraceMatches(StackTraceElement element, String className, String methodName, String fileName, int lineNumber) {
            assert element.className == className
            assert element.methodName == methodName
            assert element.fileName == fileName
            assert element.lineNumber == lineNumber
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/MethodUtil.java

        /**
         * シグニチャの文字列表現を返します。
         *
         * @param methodName
         *            メソッド名。{@literal null}や空文字列であってはいけません
         * @param argTypes
         *            引数型のな並び
         * @return シグニチャの文字列表現
         */
        public static String getSignature(final String methodName, final Class<?>... argTypes) {
            assertArgumentNotEmpty("methodName", methodName);
    
            final StringBuilder buf = new StringBuilder(100);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                    return;
                }
    
                String methodName = invocation.getName();
                boolean isSupportMethod = methodName.length() > 11 && methodName.startsWith("is") && methodName.endsWith("Supported");
                if (!isSupportMethod) {
                    return;
                }
    
                String getterName = "get" + methodName.substring(2, methodName.length() - 9);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

        /** このメソッドを所有するクラスの{@link BeanDesc} */
        protected final BeanDesc beanDesc;
    
        /** メソッド */
        protected final Method method;
    
        /** メソッド名 */
        protected final String methodName;
    
        /** メソッドの引数型の配列 */
        protected final Class<?>[] parameterTypes;
    
        /** メソッドの戻り値型 */
        protected final Class<?> returnType;
    
        /** パラメータ化された引数型の情報 */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestFilter.java

         * @param methodName the method name of the test to execute. Can be null.
         * @return this filter object
         */
        TestFilter includeTest(String className, String methodName);
    
        /**
         * Excludes a test method specified by test class name and method name.
         *
         * @param className the class name of the test to exclude
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/configuration/internal/DefaultListenerBuildOperationDecorator.java

                final String methodName = method.getName();
                if (methodName.equals("toString") && (args == null || args.length == 0)) {
                    return "BuildOperationEmittingBuildListenerInvocationHandler{delegate: " + delegate + "}";
                } else if (methodName.equals("hashCode") && (args == null || args.length == 0)) {
                    return delegate.hashCode();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top