Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for difference (0.81 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     * <h2>Relationship with Java compiler standard location</h2>
     * This enumeration is closely related to the {@link JavaFileManager.Location} enumerations.
     * A difference is that the latter enumerates input and output files, while {@code JavaPathType}
     * enumerates only input dependencies. Another difference is that {@code JavaPathType} contains
     * some enumeration values used only at runtime and therefore not available in {@code javax.tool},
     * such as agent paths.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. api/maven-api-plugin/src/main/mdo/plugin.mdo

                path. As the name suggests, this is similar to requiresDependencyResolution and supports the same values.
                The important difference is this will not resolve the files for the dependencies, i.e. the artifacts
                associated with a Maven project can lack a file. As such, this annotation is meant for Mojos that only
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

    import org.jetbrains.kotlin.name.StandardClassIds
    import org.jetbrains.kotlin.renderer.DescriptorRenderer
    import org.jetbrains.kotlin.renderer.render
    import org.jetbrains.kotlin.resolve.calls.inference.CapturedType
    import org.jetbrains.kotlin.resolve.descriptorUtil.annotationClass
    import org.jetbrains.kotlin.types.*
    import org.jetbrains.kotlin.types.checker.NewCapturedType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

     *
     * @param binaryRoots Binary roots of the binary libraries that are specific to [project].
     * @param sharedBinaryRoots Binary roots that are shared between multiple different projects. This allows Kotlin tests to cache stubs for
     * shared libraries like the Kotlin stdlib.
     */
    class KotlinStandaloneDeclarationProviderFactory(
        private val project: Project,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

         * Keys for this map is from the set [partiallyAppliedSymbol].signature.typeParameters.
         * In case of resolution or inference error could return empty map.
         */
        public abstract val typeArgumentsMapping: Map<KaTypeParameterSymbol, KaType>
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.psi.psiUtil.*
    import org.jetbrains.kotlin.resolve.BindingContext
    import org.jetbrains.kotlin.resolve.calls.components.isVararg
    import org.jetbrains.kotlin.resolve.calls.inference.returnTypeOrNothing
    import org.jetbrains.kotlin.resolve.calls.smartcasts.MultipleSmartCasts
    import org.jetbrains.kotlin.resolve.calls.smartcasts.SingleSmartCast
    import org.jetbrains.kotlin.resolve.calls.util.getParameterForArgument
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                    else -> KaFirGenericSubstitutor(substitutor, this@KaSymbolByFirBuilder)
                }
            }
        }
    
        /**
         * We shouldn't expose imported callables as they may have different [org.jetbrains.kotlin.name.CallableId]s
         * than the original callables.
         * Resolved FIR has explicitly declared original objects receivers instead of such synthetic callables.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

            if (scopes.put(scopeAnnotation, scope) != null) {
                throw new DIException(
                        "Cannot rebind scope annotation class to a different implementation: " + scopeAnnotation);
            }
            return this;
        }
    
        public <U> Injector bindInstance(Class<U> clazz, U instance) {
            Key<?> key = Key.of(clazz, ReflectionUtils.qualifierOf(clazz));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

    import org.jetbrains.kotlin.psi.psiUtil.getParentOfType
    import org.jetbrains.kotlin.resolve.BindingContext
    import org.jetbrains.kotlin.resolve.DescriptorUtils
    import org.jetbrains.kotlin.resolve.calls.inference.CapturedType
    import org.jetbrains.kotlin.resolve.calls.util.getResolvedCall
    import org.jetbrains.kotlin.resolve.scopes.utils.getImplicitReceiversHierarchy
    import org.jetbrains.kotlin.types.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

     * to correctly reason about long qualifiers.
     */
    private sealed interface TypeQualifier {
        val referencedClassId: ClassId
    
        /**
         * Type can be imported with alias, and thus can be referenced by the name different from its actual name.
         *
         * We cannot use [ClassId.getShortClassName] for this, since it is not affected by the alias.
         */
        val referencedByName: Name
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top