Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for First (0.08 sec)

  1. maven-model-builder/src/test/resources/poms/depmgmt/root-dep-first.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 951 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/Pair.java

            return new Pair<>(first, second);
        }
    
        /**
         * インスタンスを構築します。
         */
        public Pair() {
        }
    
        /**
         * インスタンスを構築します。
         *
         * @param first
         *            1番目の値
         * @param second
         *            2番目の値
         */
        public Pair(final T1 first, final T2 second) {
            this.first = first;
            this.second = second;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/RenderDataUtil.java

                    // care performance for List that the most frequent pattern
                    final Object first = coll instanceof List<?> ? ((List<?>) coll).get(0) : coll.iterator().next();
                    if (first instanceof Entity) {
                        data.register(key, coll.stream().map(BeanUtil::copyBeanToNewMap).collect(Collectors.toList()));
                        return;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SubtypingComponent.kt

        override val token: KaLifetimeToken
            get() = analysisSession.token
    
        override fun isEqualTo(first: KaType, second: KaType, errorTypePolicy: KaSubtypingErrorTypePolicy): Boolean {
            require(first is KaFe10Type)
            require(second is KaFe10Type)
            return getTypeCheckerFor(errorTypePolicy).equalTypes(first.fe10Type, second.fe10Type)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirSubstitutor.kt

        builder: KaSymbolByFirBuilder,
    ) : AbstractKaFirSubstitutor<ChainedSubstitutor>(substitutor, builder), KaChainedSubstitutor {
        override val first
            get(): KaSubstitutor {
                return builder.typeBuilder.buildSubstitutor(substitutor.first)
            }
    
        override val second
            get(): KaSubstitutor {
                return builder.typeBuilder.buildSubstitutor(substitutor.second)
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtRendererCodeStyle.kt

        override fun getSeparatorBetweenMembers(analysisSession: KaSession, first: KaDeclarationSymbol, second: KaDeclarationSymbol): String {
            return when {
                first is KaEnumEntrySymbol && second is KaEnumEntrySymbol -> ",\n"
                first is KaEnumEntrySymbol && second !is KaEnumEntrySymbol -> ";\n\n"
                else -> "\n\n"
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubtypingComponent.kt

        override fun isEqualTo(first: KaType, second: KaType, errorTypePolicy: KaSubtypingErrorTypePolicy): Boolean {
            second.assertIsValidAndAccessible()
            check(first is KaFirType)
            check(second is KaFirType)
            return AbstractTypeChecker.equalTypes(
                createTypeCheckerContext(errorTypePolicy),
                first.coneType,
                second.coneType,
            )
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuilder.java

         * The model building request passed to this method must be the same as the one used for the first phase of the
         * model building.
         *
         * @param request The model building request that holds the parameters, must not be {@code null}.
         * @param result The interim result of the first phase of model building, must not be {@code null}.
         * @return The result of the model building, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:27:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10ClassErrorType.kt

            get() = withValidityAssertion {
                fe10Type.formatParams.first().split('.').map {
                    KaClassTypeQualifier.KaUnresolvedClassTypeQualifier(Name.guessByFirstCharacter(it), emptyList(), token)
                }
            }
    
        @KaAnalysisNonPublicApi
        override val presentableText: String?
            get() = withValidityAssertion { fe10Type.formatParams.first() }
    
        @KaAnalysisNonPublicApi
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/substitutorMarkers.kt

     * This is an implementation detail,
     * and Analysis API clients should not depend on the fact if some [KaSubstitutor] is [KaChainedSubstitutor] or not.
     */
    @KaAnalysisApiInternals
    interface KaChainedSubstitutor : KaSubstitutor {
        val first: KaSubstitutor
        val second: KaSubstitutor
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top