Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 533 for callableId (0.13 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                }
            }
        }
    
        /**
         * We shouldn't expose imported callables as they may have different [org.jetbrains.kotlin.name.CallableId]s
         * than the original callables.
         * Resolved FIR has explicitly declared original objects receivers instead of such synthetic callables.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

                        renderConstantValueDebug(it, printer)
                    }
                }
    
                is KaEnumEntryAnnotationValue -> {
                    printer.append(value.callableId?.asSingleFqName()?.render())
                }
    
                is KaConstantAnnotationValue -> {
                    printer.append(value.constantValue.constantValueKind.asString)
                        .append("(")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

                        } else {
                            SHORTEN_AND_IMPORT
                        }
                    }
    
                    else -> {
                        val isNotTopLevel = symbol.callableId?.classId != null
    
                        if (isNotTopLevel) {
                            SHORTEN_IF_ALREADY_IMPORTED
                        } else {
                            SHORTEN_AND_IMPORT
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                    ?.javaFileFacadeFqName?.asString()
            } else {
                val classId = (containingSymbolOrSelf as? KaConstructorSymbol)?.containingClassId
                    ?: containingSymbolOrSelf.callableId?.classId
                classId?.takeUnless { it.shortClassName.isSpecial }
                    ?.asFqNameString()
            }
        }
    
        override fun getContainingModule(symbol: KaSymbol): KtModule {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        interface InvisibleSetter : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = InvisibleSetter::class
            val property: KaVariableSymbol
            val visibility: Visibility
            val callableId: CallableId
        }
    
        interface InnerOnTopLevelScriptClassError : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = InnerOnTopLevelScriptClassError::class
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/Callables.java

          Callable<T> callable, ListeningExecutorService listeningExecutorService) {
        checkNotNull(callable);
        checkNotNull(listeningExecutorService);
        return () -> listeningExecutorService.submit(callable);
      }
    
      /**
       * Wraps the given callable such that for the duration of {@link Callable#call} the thread that is
       * running will have the given name.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Callables.java

          Callable<T> callable, ListeningExecutorService listeningExecutorService) {
        checkNotNull(callable);
        checkNotNull(listeningExecutorService);
        return () -> listeningExecutorService.submit(callable);
      }
    
      /**
       * Wraps the given callable such that for the duration of {@link Callable#call} the thread that is
       * running will have the given name.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class InvisibleSetterImpl(
        override val property: KaVariableSymbol,
        override val visibility: Visibility,
        override val callableId: CallableId,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.InvisibleSetter
    
    internal class InnerOnTopLevelScriptClassErrorImpl(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/CallablesTest.java

      public void testReturning() throws Exception {
        assertNull(Callables.returning(null).call());
    
        Object value = new Object();
        Callable<Object> callable = Callables.returning(value);
        assertSame(value, callable.call());
        // Expect the same value on subsequent calls
        assertSame(value, callable.call());
      }
    
      @J2ktIncompatible
      @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/CallablesTest.java

      public void testReturning() throws Exception {
        assertNull(Callables.returning(null).call());
    
        Object value = new Object();
        Callable<Object> callable = Callables.returning(value);
        assertSame(value, callable.call());
        // Expect the same value on subsequent calls
        assertSame(value, callable.call());
      }
    
      @J2ktIncompatible
      @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top