Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for getDescriptor (0.31 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/fe10SymbolsEquality.kt

        if (other !is KtFe10Symbol) return false
        return DescriptorEquivalenceForOverrides.areEquivalent(
            this.getDescriptor(),
            other.getDescriptor(),
            allowCopiesFromTheSameDeclaration = false
        )
    }
    
    internal fun KtFe10Symbol.calculateHashCode(): Int {
        val descriptor = this.getDescriptor()
        return descriptor?.name?.hashCode() ?: (this as? KtNamedSymbol)?.name.hashCode()
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Nov 11 10:59:57 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

                is KtPropertyAccessorSymbol -> {
                    (symbol.getDescriptor() as? PropertyAccessorDescriptor)?.correspondingProperty
                        ?.toKtSymbol(analysisContext) as? KtDeclarationSymbol
                }
                else -> {
                    symbol.getDescriptor()?.containingDeclaration
                        ?.toKtSymbol(analysisContext) as? KtDeclarationSymbol
                }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 15:34:34 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

            val descriptor = getDescriptor<ClassDescriptor>(classSymbol)
                ?: return getEmptyScope()
    
            return KtFe10ScopeMember(descriptor.unsubstitutedMemberScope, descriptor.constructors, analysisContext)
        }
    
        override fun getStaticMemberScope(symbol: KtSymbolWithMembers): KtScope {
            val descriptor = getDescriptor<ClassDescriptor>(symbol) ?: return getEmptyScope()
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 12.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

                public org.apache.maven.api.model.Plugin getModel() {
                    return delegate.getPlugin().getDelegate();
                }
    
                @Override
                public PluginDescriptor getDescriptor() {
                    return delegate.getMojoDescriptor().getPluginDescriptor().getPluginDescriptorV4();
                }
    
                @Override
                public List<Lifecycle> getLifecycles() {
                    try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

                this.descriptor = descriptor;
                this.binaryCompatibility = binaryCompatibility;
            }
    
            public String getName() {
                return name;
            }
    
            public String getDescriptor() {
                return descriptor;
            }
    
            public BinaryCompatibility getBinaryCompatibility() {
                return binaryCompatibility;
            }
    
            @Override
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Plugin.java

     * Represents a maven plugin runtime
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Plugin {
    
        @Nonnull
        org.apache.maven.api.model.Plugin getModel();
    
        @Nonnull
        PluginDescriptor getDescriptor();
    
        @Nonnull
        List<Lifecycle> getLifecycles();
    
        @Nonnull
        ClassLoader getClassLoader();
    
        @Nonnull
        Artifact getArtifact();
    
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/MojoExecution.java

     *
     * @since 4.0.0
     */
    @Experimental
    public interface MojoExecution {
    
        @Nonnull
        Plugin getPlugin();
    
        @Nonnull
        PluginExecution getModel();
    
        @Nonnull
        MojoDescriptor getDescriptor();
    
        @Nonnull
        String getExecutionId();
    
        @Nonnull
        String getGoal();
    
        @Nonnull
        String getLifecyclePhase();
    
        @Nonnull
        Optional<XmlNode> getConfiguration();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java

                this.descriptor = descriptor;
                this.artifacts = artifacts;
            }
    
            public ClassRealm getRealm() {
                return realm;
            }
    
            public ExtensionDescriptor getDescriptor() {
                return descriptor;
            }
    
            public List<Artifact> getArtifacts() {
                return artifacts;
            }
        }
    
        Key createKey(List<Artifact> extensionArtifacts);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                final ClassRealm extensionRealm = recordRealm.getRealm();
                final ExtensionDescriptor extensionDescriptor = recordRealm.getDescriptor();
                final List<Artifact> artifacts = recordRealm.getArtifacts();
    
                extensionRealms.add(extensionRealm);
                if (extensionDescriptor != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

                    new PluginParameterExpressionEvaluatorV4(session, null, exec).evaluate("${mojo.plugin.descriptor}");
    
            System.out.println("Result: " + result);
    
            assertSame(
                    exec.getPlugin().getDescriptor(),
                    result,
                    "${mojo.plugin.descriptor} expression does not return plugin descriptor.");
        }
    
        @Test
        public void testPluginArtifactsExpressionReference() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
Back to top