Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for CONSTRUCTOR (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForDeclaration.kt

    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirBackingFieldSymbol
    import org.jetbrains.kotlin.name.ClassId
    
    internal class KaFirAnnotationListForDeclaration private constructor(
        val firSymbol: FirBasedSymbol<*>,
        private val builder: KaSymbolByFirBuilder,
    ) : AbstractList<KaAnnotation>(), KaAnnotationList {
        private val backingAnnotations by lazy { annotations(firSymbol, builder) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.descriptors.annotations.Annotations
    import org.jetbrains.kotlin.name.ClassId
    
    internal class KaFe10AnnotationList private constructor(
        private val fe10Annotations: Annotations,
        private val analysisContext: Fe10AnalysisContext,
        private val ignoredAnnotations: Set<ClassId> = emptySet()
    ) : AbstractList<KaAnnotation>(), KaAnnotationList {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

         */
        public val index: Int?
    
        /**
         * A list of explicitly provided annotation values.
         */
        public val arguments: List<KaNamedAnnotationValue>
    
        /**
         * An annotation constructor symbol.
         */
        public val constructorSymbol: KaConstructorSymbol?
    
        @Deprecated("Use 'constructorSymbol' instead.")
        public val constructorSymbolPointer: KaSymbolPointer<KaConstructorSymbol>?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinCompositeDeclarationProvider.kt

    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.utils.flatMapToNullableSet
    
    public class KotlinCompositeDeclarationProvider private constructor(
        override val providers: List<KotlinDeclarationProvider>
    ) : KotlinDeclarationProvider(), KotlinCompositeProvider<KotlinDeclarationProvider> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputs.kt

        ignoredPathsString: String?,
        isCaseSensitive: Boolean,
        private val rootDirectory: File
    ) : IgnoredConfigurationInputs {
    
        @Inject
        @Suppress("unused") // used in DI
        constructor(
            configurationCacheStartParameter: ConfigurationCacheStartParameter,
            fileSystem: FileSystem
        ) : this(
            ignoredPathsString = configurationCacheStartParameter.ignoredFileSystemCheckInputs,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirConstructorSymbol.kt

            KaPsiBasedSymbolPointer.createForSymbolFromSource<KaConstructorSymbol>(this)?.let { return it }
            if (symbolKind == KaSymbolKind.LOCAL) {
                throw CanNotCreateSymbolPointerForLocalLibraryDeclarationException("constructor")
            }
    
            KaFirConstructorSymbolPointer(
                analysisSession.createOwnerPointer(this),
                isPrimary,
                FirCallableSignature.createSignature(firSymbol),
            )
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top