Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for declaredMethod (0.36 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rerun/TestTaskConfigurer.java

        }
    
        private static TestExecuter<JvmTestExecutionSpec> getTestExecuter(Task task) {
            return invoke(declaredMethod(Test.class, "createTestExecuter"), task);
        }
    
        private static void setTestExecuter(Task task, RerunTestExecuter rerunTestExecuter) {
            invoke(declaredMethod(Test.class, "setTestExecuter", TestExecuter.class), task, rerunTestExecuter);
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy

            collect(result, c)
            return result
        }
    
        private void collect(Set<CtMethod> result, CtClass c) {
            if (c == null) {
                return
            }
    
            result.addAll(c.declaredMethods.findAll { isPublicApi(it) })
    
            collect(result, c.superclass)
        }
    
        private boolean isPublicApi(CtMethod method) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

        val left = EventRecorder(enforceOrder = false)
        val right = EventRecorder(enforceOrder = false)
        val composite = left.eventListener + right.eventListener
    
        for (method in EventListener::class.java.declaredMethods) {
          if (method.name == "plus") continue
    
          val args =
            method.parameters
              .map { sampleValues[it.type] ?: error("no sample value for ${it.type}") }
              .toTypedArray()
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 70.7K bytes
    - Click Count (0)
Back to Top