Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 278 for CONSTRUCTOR (0.1 sec)

  1. 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)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/scopes/KtCompositeScope.kt

    import org.jetbrains.kotlin.analysis.api.scopes.KaScopeNameFilter
    import org.jetbrains.kotlin.analysis.api.symbols.*
    import org.jetbrains.kotlin.name.Name
    
    @KaAnalysisApiInternals
    class KaCompositeScope private constructor(
        private val subScopes: List<KaScope>,
        override val token: KaLifetimeToken,
    ) : KaScope {
    
        init {
            require(subScopes.size > 1) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. 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)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirSimpleNameReference.kt

            check(this is KaFirSession)
            val results = FirReferenceResolveHelper.resolveSimpleNameReference(this@KaFirSimpleNameReference, this)
            //This fix-up needed to resolve annotation call into annotation constructor (but not into the annotation type)
            return fixUpAnnotationCallResolveToCtor(results)
        }
    
        override fun getResolvedToPsi(analysisSession: KaSession): Collection<PsiElement> = with(analysisSession) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/MavenArtifactProperties.java

         * resolution will fail and no attempts to search local/remote repositories are made.
         */
        public static final String LOCAL_PATH = "localPath";
    
        private MavenArtifactProperties() {
            // hide constructor
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForType.kt

    import org.jetbrains.kotlin.fir.types.ConeKotlinType
    import org.jetbrains.kotlin.fir.types.customAnnotations
    import org.jetbrains.kotlin.name.ClassId
    
    internal class KaFirAnnotationListForType private constructor(
        val coneType: ConeKotlinType,
        private val builder: KaSymbolByFirBuilder,
    ) : AbstractList<KaAnnotation>(), KaAnnotationList {
        private val backingAnnotations: List<KaAnnotation> by lazy {
    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-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KaAnnotationImpl.kt

         */
        lazyArguments: Lazy<List<KaNamedAnnotationValue>>,
        index: Int?,
    
        /**
         * The constructor symbol into which this annotation resolves if the annotation is correctly resolved
         */
        constructorSymbol: KaConstructorSymbol?,
        override val token: KaLifetimeToken
    ) : KaAnnotation {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                    false
    
                // - The `this` in `constructor(x: Int) : this(x)`
                is KtConstructorDelegationReferenceExpression ->
                    false
    
                // - Administrative node for EnumEntries. Never used as expression.
                is KtEnumEntrySuperclassReferenceExpression ->
                    false
    
                // - The "reference" in a constructor call. E.g. `C` in `C()`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

      }
    
      private final transient SortedSet<E> sortedDelegate;
    
      /**
       * Scary constructor for ContiguousSet. This constructor (in this file, the GWT emulation of
       * ImmutableSortedSet) creates an empty sortedDelegate, which, in a vacuum, sets this object's
       * contents to empty. By contrast, the non-GWT constructor with the same signature uses the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

        extendsFrom(externalApi.get())
        outgoing.artifact(task)
        configureAsRuntimeElements(objects)
    }
    
    open class SoftwareComponentFactoryProvider @Inject constructor(val factory: SoftwareComponentFactory)
    val softwareComponentFactory = project.objects.newInstance(SoftwareComponentFactoryProvider::class.java).factory
    val gradleApiComponent = softwareComponentFactory.adhoc("gradleApi")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top