Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Contains (0.17 sec)

  1. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*  *##set ( $groupId = $project.artifact.groupId )
    #*  *##set ( $directory = 'lib' )
    #*  *##if ( !$apacheMavenGroupIds.contains( $groupId ) )
    #*    *### advertise about each non-Maven dependency
    #*    *###
    #*    *### infer SPDX license id
    #*    *##if ( $MITLicenseNames.contains( $license.name ) )
    #*      *##set ( $spdx = 'MIT' )
    #*    *##elseif ( $license.name == "Eclipse Public License, Version 1.0" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10PsiTypeProvider.kt

            typeMapper.mapType(type, mode, signatureWriter)
    
            val canonicalSignature = signatureWriter.toString()
            require(!canonicalSignature.contains(SpecialNames.ANONYMOUS_STRING))
    
            if (canonicalSignature.contains("L<error>")) return null
            if (canonicalSignature.contains(SpecialNames.NO_NAME_PROVIDED.asString())) return null
    
            val signature = SignatureParsing.CharIterator(canonicalSignature)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileSelector.java

            boolean activatedPomProfileNotByDefault = false;
    
            for (Profile profile : profiles) {
                if (!deactivatedIds.contains(profile.getId())) {
                    if (activatedIds.contains(profile.getId()) || isActive(profile, context, problems)) {
                        activeProfiles.add(profile);
                        if (Profile.SOURCE_POM.equals(profile.getSource())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForReceiverParameter.kt

            return backingAnnotations.iterator()
        }
    
        override fun get(index: Int): KaAnnotation = withValidityAssertion {
            return backingAnnotations[index]
        }
    
        override fun contains(classId: ClassId): Boolean = withValidityAssertion {
            return hasAnnotation(firCallableSymbol, classId, useSiteSession, receiverParameter)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            class GenerateClassFilter : GenerationState.GenerateClassFilter() {
                override fun shouldGeneratePackagePart(ktFile: KtFile): Boolean {
                    return file === ktFile || inlineObjectDeclarationFiles.contains(ktFile)
                }
    
                override fun shouldAnnotateClass(processingClassOrObject: KtClassOrObject): Boolean {
                    return true
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForType.kt

            return backingAnnotations.iterator()
        }
    
        override fun get(index: Int): KaAnnotation = withValidityAssertion {
            return backingAnnotations[index]
        }
    
        override fun contains(classId: ClassId): Boolean = withValidityAssertion {
            return backingAnnotations.any { it.classId == classId }
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
    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-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

            val nextInlineFunctions = HashSet<KtDeclarationWithBody>()
            val collector = InlineFunctionsCollector(project, analyzeOnlyReifiedInlineFunctions) { declaration ->
                if (!analyzedElements.contains(declaration)) {
                    nextInlineFunctions.add(declaration)
                }
            }
            val propertyAccessor = InlineDelegatedPropertyAccessorsAnalyzer(analysisContext, collector)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForDeclaration.kt

            return backingAnnotations.iterator()
        }
    
        override fun get(index: Int): KaAnnotation = withValidityAssertion {
            return backingAnnotations[index]
        }
    
        override fun contains(classId: ClassId): Boolean = withValidityAssertion {
            return hasAnnotation(firSymbol, classId, useSiteSession)
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

                        if (classId in ignoredAnnotations) continue
                        add(classId)
                    }
                }
            }
    
        override fun contains(classId: ClassId): Boolean = withValidityAssertion {
            fe10Annotations.hasAnnotation(classId.asSingleFqName())
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         * Returns the file paths of all dependencies, regardless on which tool option those paths should be placed.
         * The returned list may contain a mix of Java class-path, Java module-path, and other types of path elements.
         * This collection has the same content than {@code getDependencies.values()} except that it does not contain
         * null elements.
         *
         * @return the paths of all dependencies
         */
        @Nonnull
        List<Path> getPaths();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top