Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 224 for _resolved (0.19 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            )
            return candidates.filter { overloadCandidate ->
                when (overloadCandidate.candidate.lowestApplicability) {
                    CandidateApplicability.RESOLVED -> true
                    CandidateApplicability.K2_SYNTHETIC_RESOLVED -> true // SAM constructor call
                    else -> false
                }
            }
        }
    
        private fun findCandidatesForPropertyAccess(
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolver.java

    import org.apache.maven.api.model.Parent;
    import org.apache.maven.api.model.Repository;
    
    /**
     * Resolves a POM from its coordinates. During the build process, the
     * {@link org.apache.maven.api.services.ModelBuilder} will add any relevant repositories to the model resolver. In
     * other words, the model resolver is stateful and should not be reused across multiple model building requests.
     *
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

            // The root artifact may, or may not be resolved so we need to check before we attempt to resolve.
            // This is often an artifact like a POM that is taken from disk and we already have hold of the
            // file reference. But this may be a Maven Plugin that we need to resolve from a remote repository
            // as well as its dependencies.
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 24.8K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PathTranslator.java

     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    import java.nio.file.Path;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    public interface PathTranslator {
    
        /**
         * Resolves the specified path against the given base directory. The resolved path will be absolute and uses the
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java

         * @return The resolved plugin artifact, never {@code null}.
         * @throws PluginResolutionException If the plugin artifact could not be resolved.
         */
        Artifact resolve(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session)
                throws PluginResolutionException;
    
        /**
         * Resolves the runtime dependencies of the specified plugin.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            Map.Entry<Artifact, Path> resolved = session.resolveArtifact(coord);
            assertNotNull(resolved);
            assertNotNull(resolved.getKey());
            assertNotNull(resolved.getValue());
            Optional<Path> op = session.getArtifactPath(resolved.getKey());
            assertTrue(op.isPresent());
            assertEquals(resolved.getValue(), op.get());
        }
    
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 9.9K bytes
    - Viewed (2)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CallResolver.kt

    import org.jetbrains.kotlin.resolve.calls.tower.NewAbstractResolvedCall
    import org.jetbrains.kotlin.resolve.calls.util.getCall
    import org.jetbrains.kotlin.resolve.calls.util.getResolvedCall
    import org.jetbrains.kotlin.resolve.diagnostics.Diagnostics
    import org.jetbrains.kotlin.resolve.scopes.receivers.ExpressionReceiver
    import org.jetbrains.kotlin.resolve.scopes.receivers.ExtensionReceiver
    import org.jetbrains.kotlin.resolve.scopes.receivers.ImplicitReceiver
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Apr 29 12:48:54 GMT 2024
    - 34.8K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

    import org.apache.maven.artifact.metadata.SwitchableMetadataSource;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.resolver.ArtifactResolutionRequest;
    import org.apache.maven.artifact.resolver.ArtifactResolutionResult;
    import org.apache.maven.artifact.resolver.ResolutionErrorHandler;
    import org.apache.maven.execution.DefaultMavenExecutionRequest;
    import org.apache.maven.execution.DefaultMavenExecutionResult;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

    import org.jetbrains.kotlin.fir.resolve.ResolutionMode
    import org.jetbrains.kotlin.fir.resolve.calls.AbstractCandidate
    import org.jetbrains.kotlin.fir.resolve.calls.Candidate
    import org.jetbrains.kotlin.fir.resolve.createConeDiagnosticForCandidateWithError
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeDiagnosticWithCandidates
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeHiddenCandidateError
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeAmbiguityError
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeUnresolvedError
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeUnresolvedNameError
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeUnresolvedReferenceError
    import org.jetbrains.kotlin.fir.resolve.diagnostics.ConeUnresolvedSymbolError
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 24.2K bytes
    - Viewed (0)
Back to top