Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for supply (0.41 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiIdeModeTestServiceRegistrar.kt

            project.apply {
                registerService(KotlinLifetimeTokenProvider::class.java, KotlinReadActionConfinementLifetimeTokenProvider::class.java)
            }
        }
    
        override fun registerApplicationServices(application: MockApplication, testServices: TestServices) {
            application.apply {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeCreator.kt

    ): KaType =
        analysisSession.typesCreator.buildClassType(KaClassTypeBuilder.ByClassId(classId, token).apply(build))
    
    public inline fun KaTypeCreatorMixIn.buildClassType(
        symbol: KaClassLikeSymbol,
        build: KaClassTypeBuilder.() -> Unit = {},
    ): KaType =
        analysisSession.typesCreator.buildClassType(KaClassTypeBuilder.BySymbol(symbol, token).apply(build))
    
    public inline fun KaTypeCreatorMixIn.buildTypeParameterType(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KotlinAnalysisPermissionOptions.kt

         * overridden by [org.jetbrains.kotlin.analysis.api.permissions.allowAnalysisOnEdt].
         *
         * TODO (KT-68186): Due to KT-68386, the implementation currently doesn't apply the default to
         * [KaAnalysisPermissionRegistry][org.jetbrains.kotlin.analysis.api.permissions.KaAnalysisPermissionRegistry], but it is taken into
         * account by [KaAnalysisPermissionChecker].
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/tests/org/jetbrains/kotlin/analysis/api/fe10/test/configurator/AnalysisApiFe10TestConfigurator.kt

        override val testPrefix: String
            get() = "descriptors"
    
        override fun configureTest(builder: TestConfigurationBuilder, disposable: Disposable) {
            builder.apply {
                useAdditionalService<KtTestModuleFactory> { KtSourceTestModuleFactory }
                useAdditionalService { AnalysisApiIndexingConfiguration(AnalysisApiBinaryLibraryIndexingMode.NO_INDEXING) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

        private fun build() = KaDiagnosticConverter(conversions)
    
        companion object {
            inline fun buildConverter(init: KaDiagnosticConverterBuilder.() -> Unit) =
                KaDiagnosticConverterBuilder().apply(init).build()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT
        APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH
        PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH
        LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR
        LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION
        AND LIMITATION MAY NOT APPLY TO YOU.
    
    8. U.S. GOVERNMENT END USERS.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/offline-mode.apt

      anticipate the inevitable network failures that accompany being physically
      disconnected from the network, and adjust it's behavior accordingly.
    
      It is more than simply understanding that m2 cannot go and check for the
      latest version of some snapshot artifact. If m2 is offline, SCM operations
      cannot succeed; no artifact downloads can take place, regardless of whether
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

    /**
     * A class to keep a [KtUserType] to shorten and what shape the shortened result has to be. [shortenedReference] is the expected result of
     * shortening in a string form. If [shortenedReference] is null, it means the shortening will simply delete the qualifier. Note that
     * currently the only usage of [shortenedReference] is the case we have the import-alias. For example, [shortenedReference] will be
     * "AliasType" when we shorten:
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

                            withIndent { appendLine(it) }
                        }
                    }
                }
            }
    
            scope.getPackageSymbols()
                .toMutableList()
                .apply { sortBy { it.fqName.asString() } }
                .renderAll("packages") { prettyRenderPackage(it) }
            scope.getClassifierSymbols().toList().renderAll("classifiers") { prettyRenderDeclaration(it) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

    object AnalysisApiBaseTestServiceRegistrar : AnalysisApiTestServiceRegistrar() {
        @OptIn(KaAnalysisApiInternals::class)
        override fun registerProjectServices(project: MockProject, testServices: TestServices) {
            project.apply {
                registerService(KotlinModificationTrackerFactory::class.java, KotlinStandaloneModificationTrackerFactory::class.java)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top