Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for methodName2 (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

        }
    
        /**
         * The returned scope includes calls to all methods named {@code methodName}.
         *
         * @param methodName the name of the method to intercept
         * @return the scope object
         */
        public static InterceptScope methodsNamed(String methodName) {
            return new NamedMemberScope(CallType.METHOD, methodName);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftXCTestWithDepAndCustomXCTestSuite.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class SwiftXCTestWithDepAndCustomXCTestSuite extends SwiftXCTest {
        String testSuiteName
        String methodName
        String assertion
        String[] imports
        String[] importsTestable
    
        SwiftXCTestWithDepAndCustomXCTestSuite(
            String projectName,
            String classToTest,
            String assertion,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/MathPreconditions.java

      }
    
      static void checkNoOverflow(boolean condition, String methodName, int a, int b) {
        if (!condition) {
          throw new ArithmeticException("overflow: " + methodName + "(" + a + ", " + b + ")");
        }
      }
    
      static void checkNoOverflow(boolean condition, String methodName, long a, long b) {
        if (!condition) {
          throw new ArithmeticException("overflow: " + methodName + "(" + a + ", " + b + ")");
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top