Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getMethod (0.23 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbol.kt

            get() = withValidityAssertion { KtFe10DescFunctionSymbol.build(descriptor.getMethod, analysisContext) }
    
        override val javaSetterSymbol: KtFunctionSymbol?
            get() = withValidityAssertion {
                val setMethod = descriptor.setMethod ?: return null
                return KtFe10DescFunctionSymbol.build(setMethod, analysisContext)
            }
    
        override val hasSetter: Boolean
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  2. container-tests/src/test/java/okhttp3/containers/BasicLoomTest.kt

      }
    
      @AfterEach
      fun checkForPinning() {
        assertThat(capturedOut.toString()).isEmpty()
      }
    
      private fun newVirtualThreadPerTaskExecutor(): ExecutorService {
        return Executors::class.java.getMethod("newVirtualThreadPerTaskExecutor").invoke(null) as ExecutorService
      }
    
      @Test
      fun testHttpsRequest() {
        MockServerClient(mockServer.host, mockServer.serverPort).use { mockServerClient ->
          mockServerClient
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 11:15:46 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                return getMethod.callableIdIfNotLocal
            }
    
            return null
        }
    
    internal val PropertyDescriptor.setterCallableIdIfNotLocal: CallableId?
        get() {
            if (this is SyntheticPropertyDescriptor) {
                val setMethod = this.setMethod
                if (setMethod != null) {
                    return setMethod.callableIdIfNotLocal
                }
            }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 33.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

                            || "jakarta.enterprise.inject.Typed".equals(annotationType.getName())) {
                        try {
                            Class<?>[] value =
                                    (Class<?>[]) annotationType.getMethod("value").invoke(a);
                            if (value.length == 0) {
                                value = superType.getInterfaces();
                            }
                            List<Class<?>> nonInterfaces =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

        if (!isAppEngineWithApiClasses()) {
          return Executors.defaultThreadFactory();
        }
        try {
          return (ThreadFactory)
              Class.forName("com.google.appengine.api.ThreadManager")
                  .getMethod("currentRequestThreadFactory")
                  .invoke(null);
        } catch (IllegalAccessException | ClassNotFoundException | NoSuchMethodException e) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 41.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/Types.java

          Type usedInGenericType(Type type) {
            return JAVA7.usedInGenericType(type);
          }
    
          @Override
          String typeName(Type type) {
            try {
              Method getTypeName = Type.class.getMethod("getTypeName");
              return (String) getTypeName.invoke(type);
            } catch (NoSuchMethodException e) {
              throw new AssertionError("Type.getTypeName should be available in Java 8");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbolForOverride.kt

        override val javaSetterSymbol: KtFunctionSymbol?
            get() = withValidityAssertion {
                val setMethod = descriptor.setterMethod ?: return null
                return KtFe10DescFunctionSymbol.build(setMethod, analysisContext)
            }
    
        override val hasSetter: Boolean
            get() = withValidityAssertion { descriptor.setter != null }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 4.8K bytes
    - Viewed (0)
Back to top