Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 279 for CONSTRUCTOR (0.42 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                return constructor.getGenericParameterTypes();
            }
    
            private Member getFactory() {
                return constructor;
            }
    
            @Override
            protected String getFactoryDisplayName() {
                return String.format("%s constructor", format(getFactory().getDeclaringClass()));
            }
    
            @Override
            protected Object invokeMethod(Object[] params) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/KtAnnotationRenderer.kt

    import org.jetbrains.kotlin.analysis.api.renderer.base.annotations.renderers.KaAnnotationUseSiteTargetRenderer
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    
    public class KaAnnotationRenderer internal constructor(
        public val annotationListRenderer: KaAnnotationListRenderer,
        public val annotationFilter: KaRendererAnnotationsFilter,
        public val annotationsQualifiedNameRenderer: KaAnnotationQualifierRenderer,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

        private final ArrayBlockingQueue<Exchange> eventQueue;
    
        /**
         * Constructor that makes passed in delegate run on single thread, and will block on last event.
         */
        public SimplexTransferListener(TransferListener delegate) {
            this(delegate, QUEUE_SIZE, BATCH_MAX_SIZE, true);
        }
    
        /**
         * Constructor that may alter behaviour of this listener.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/KtKeywordsRenderer.kt

    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.lexer.KtKeywordToken
    
    public class KaKeywordsRenderer private constructor(
        public val keywordRenderer: KaKeywordRenderer,
        public val keywordFilter: KaRendererKeywordFilter,
    ) {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinCompositePackageProvider.kt

    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.platform.TargetPlatform
    
    public class KotlinCompositePackageProvider private constructor(
        override val providers: List<KotlinPackageProvider>,
    ) : KotlinPackageProvider(), KotlinCompositeProvider<KotlinPackageProvider> {
        override fun doesPackageExist(packageFqName: FqName, platform: TargetPlatform): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ImplicitImports.kt

    import org.gradle.internal.service.scopes.ServiceScope
    
    
    /**
     * Holds the list of imports implicitly added to every Kotlin build script.
     */
    @ServiceScope(Scope.Global::class)
    class ImplicitImports internal constructor(
        @Transient
        private val importsReader: ImportsReader
    ) {
    
        val list by lazy {
            gradleImports() + gradleKotlinDslImports()
        }
    
        private
        fun gradleImports() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForReceiverParameter.kt

    import org.jetbrains.kotlin.fir.FirSession
    import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
    import org.jetbrains.kotlin.name.ClassId
    
    internal class KaFirAnnotationListForReceiverParameter private constructor(
        private val firCallableSymbol: FirCallableSymbol<*>,
        private val receiverParameter: FirAnnotationContainer,
        private val builder: KaSymbolByFirBuilder,
    ) : AbstractList<KaAnnotation>(), KaAnnotationList {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

            when:
            DeprecationLogger.deprecateInternalApi("constructor DefaultPolymorphicDomainObjectContainer(Class<T>, Instantiator)")
                .replaceWith("ObjectFactory.polymorphicDomainObjectContainer(Class<T>)")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    If the type contains an abstract property called "name" of type `String`, Gradle provides an implementation for the getter
    method, and extends each constructor with a "name" parameter, which comes before all other constructor parameters.
    
    If the type is an interface, Gradle will provide a constructor with a single "name" parameter and `@Inject` semantics.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/SublistMerger.kt

    import org.jetbrains.kotlin.utils.addToStdlib.partitionIsInstance
    
    /**
     * With each call to [merge], [SublistMerger] can merge all elements of a specific (reified) type into a single element using a supplied
     * constructor and then add it to [destination]. Unmerged elements are added to [destination] using [finish].
     *
     * The purpose of [SublistMerger] is to merge multiple different types of elements from a single origin list without the need for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top