Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 193 for unresolved3 (0.17 sec)

  1. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnector.java

            this.repository = repository;
            String repositoryUrl = repository.getUrl();
            if (repositoryUrl.contains("${")) {
                // the repository url contains unresolved properties and getting the basedir is not possible
                // in JDK 20+ 'new URL(string)' will fail if the string contains a curly brace
                this.basedir = null;
            } else {
                try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

                              [BigDecimal, '999G'],
                              [BigInteger, '777G'],
                              [Configuration.State, 'org.gradle.api.artifacts.Configuration.State.UNRESOLVED'],
                              [File, 'new File("foo")']].collect { propertyDef ->
                def (type, value) = propertyDef
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedComponentResult.java

     */
    @UsedByScanPlugin
    public interface ResolvedComponentResult extends ComponentResult {
    
        /**
         * <p>Returns the dependencies of this component. Includes resolved and unresolved dependencies (if any).
         *
         * <p>The elements of the returned collection are declared as {@link DependencyResult}, however the dependency instances will also implement one of the
         * following interfaces:</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 05 19:24:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

        private String deploymentTimestamp;
    
        public void transformForResolve(Artifact artifact, RepositoryRequest request) throws ArtifactResolutionException {
            // Only select snapshots that are unresolved (eg 1.0-SNAPSHOT, not 1.0-20050607.123456)
            if (artifact.isSnapshot() && artifact.getBaseVersion().equals(artifact.getVersion())) {
                try {
                    String version = resolveVersion(artifact, request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VirtualPlatformState.java

         * It is possible that a member of a virtual platform is discovered after trying
         * to resolve the platform itself. If the platform was declared as a dependency,
         * then the engine thinks that the platform module is unresolved. We need to
         * remember such edges, because in case a virtual platform gets defined, the error
         * is no longer valid and we can attach the target revision.
         *
         * @param edge the orphan edge
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/CachingDependencyResultFactoryTest.groovy

            then:
            dep.is(same)
            !dep.is(differentFrom)
            !dep.is(differentRequested)
            !dep.is(differentSelected)
        }
    
        def "creates and caches unresolved dependencies"() {
            def fromModule = newModule('from')
            def selectedModule = Mock(ComponentSelectionReason)
            org.gradle.internal.Factory<String> broken = { " foo" }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

            val constructorSymbol = annotation.calleeReference.toResolvedConstructorSymbol()
            if (constructorSymbol != null) {
                return constructorSymbol
            }
        }
    
        // Handle unresolved annotation calls gracefully
        @OptIn(UnresolvedExpressionTypeAccess::class)
        val annotationClass = annotation.coneTypeOrNull?.toClassSymbol(session)?.fir ?: return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/branches.go

    	continues *ForStmt // or nil
    	caseIndex int      // case index of immediately enclosing switch statement, or < 0
    }
    
    // blockBranches processes a block's body starting at start and returns the
    // list of unresolved (forward) gotos. parent is the immediately enclosing
    // block (or nil), ctxt provides information about the enclosing statements,
    // and lstmt is the labeled statement associated with this block, or nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            expect:
            def failure = fails()
            failure.assertHasCause("Cannot declare module replacement org:c->org:a because it introduces a cycle: org:c->org:a->org:b->org:c")
        }
    
        def "replacement target unresolved"() {
            publishedMavenModules('a')
            buildFile << "dependencies { conf 'org:a:1', 'org:b:1' }\n"
            declaredReplacements 'a->b'
    
            expect:
            fails("resolvedFiles")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.Set;
    
    public interface ConfigurationInternal extends ResolveContext, DeprecatableConfiguration, Configuration {
        enum InternalState {
            UNRESOLVED,
            BUILD_DEPENDENCIES_RESOLVED,
            GRAPH_RESOLVED,
    
            // This state should be removed, but it is referenced by nebula gradle-resolution-rules-plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top