Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,063 for resolution1 (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/MavenResolveTestFixture.groovy

            // The m2 installation on the integ spec is intended to verify the way Gradle interacts
            // with the system's local m2 repo, however the resolutions performed by this fixture
            // should be isolated from the build.
            def localRepoDir = temporaryFolder.testDirectory.file("maven-resolver-test-fixture-m2")
            return new ApiMavenResolver(localRepoDir, mavenRepo.uri)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/java-resolution-consistency.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 164 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/without-resolution-consistency.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 146 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

    import java.util.List;
    
    /**
     * A specialized {@link ComponentGraphResolveState} for local components (ie project dependencies).
     *
     * <p>Instances of this type are cached and reused for multiple graph resolutions, possibly in parallel. This means that the implementation must be thread-safe.
     */
    @ThreadSafe
    public interface LocalComponentGraphResolveState extends ComponentGraphResolveState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * in the selection of that module contain at least one dynamic version, then resolution will fail if the resolution
         * result can change because of this version selector.
         *
         * This can be used in cases you want to make sure your build is reproducible, <i>without</i> relying on
         * dependency locking.
         *
         * @return this resolution strategy
         * @since 6.1
         */
        ResolutionStrategy failOnDynamicVersions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForDependency/tests/disabling-transitive-dependency-resolution.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    During a build, Gradle locates and downloads the dependencies, a process called <<dependency_resolution.adoc#sec:how-gradle-downloads-deps,_dependency resolution_>>.
    Gradle then <<dependency_resolution.adoc#sec:dependency_cache,stores resolved dependencies in a local cache>> called the _dependency cache_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/go/parser/resolver_test.go

    				if got := fromParser[k]; got != want {
    					t.Errorf("%s resolved to %s, want %s", pos(k), pos(got), pos(want))
    				}
    				delete(fromParser, k)
    			}
    			// What remains in fromParser are unexpected resolutions.
    			for k, got := range fromParser {
    				t.Errorf("%s resolved to %s, want no object", pos(k), pos(got))
    			}
    		})
    	}
    }
    
    // declsFromParser walks the file and collects the map associating an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/calls/KtCall.kt

    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundArrayAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundVariableAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaDelegatedConstructorCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaErrorCallInfo
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionFailureDescriberRegistry.java

    import org.gradle.internal.component.resolution.failure.describer.IncompatibleArtifactVariantsFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.IncompatibleGraphVariantsFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.IncompatibleRequestedConfigurationFailureDescriber;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:29:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top