Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 339 for resolveDfs (0.15 sec)

  1. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3SnapshotRepoIntegrationTest.groovy

        String artifactVersion = "1.45-SNAPSHOT"
        MavenS3Module module
    
        def setup() {
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in S3"() {
            setup:
            module.publish()
    
            buildFile << mavenAwsRepoDsl()
            buildFile << """
    configurations { compile }
    
    dependencies{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsSnapshotRepoIntegrationTest.groovy

        String artifactVersion = "1.45-SNAPSHOT"
        MavenGcsModule module
    
        def setup() {
            module = getMavenGcsRepo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in Gcs"() {
            setup:
            module.publish()
    
            buildFile << mavenGcsRepoDsl()
            buildFile << """
    configurations { compile }
    
    dependencies{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

    import spock.lang.Issue
    
    @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    class GradleModuleMetadataAvailableAtIntegrationTest extends AbstractModuleDependencyResolveTest {
        def "resolves available-at variant even if dependency is not transitive"() {
            given:
            repository {
                'org:moduleA:1.0' {
                    variants(["api", "runtime"]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolverContributor.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Collection;
    
    @ServiceScope(Scope.Build.class)
    public interface PluginResolverContributor {
        void collectResolversInto(Collection<PluginResolver> resolvers);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 951 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyExtensions.java

    package org.gradle.api.internal.provider;
    
    import org.gradle.api.provider.MapProperty;
    import org.gradle.api.provider.Provider;
    
    public class MapPropertyExtensions {
    
        /**
         * Returns a provider that resolves to the value of the mapping of the given key. It will have no value
         * if the property has no value, or if it does not contain a mapping for the key.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    agentsRuntimeClasspath.description = "Resolves to all Jars that need to be added as agents"
    val gradleScriptPath by startScriptResolver(":gradle-cli-main")
    gradleScriptPath.description = "Resolves to the Gradle start scripts (bin/*) - automatically adds dependency to the :launcher project"
    val sourcesPath by sourcesResolver(listOf(coreRuntimeOnly, pluginsRuntimeOnly))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java

     * changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public interface PluginDependenciesResolver {
    
        /**
         * Resolves the main artifact of the specified plugin.
         *
         * @param plugin The plugin for which to resolve the main artifact, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pkg/apis/resource/namedresources.go

    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    	// resolves to the corresponding value of the instance under evaluation.
    	// For example:
    	//
    	//    attributes.quantity["a"].isGreaterThan(quantity("0")) &&
    	//    attributes.stringslice["b"].isSorted()
    	Selector string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

                            new File("$userHomeDir/caches/$it").deleteDir()
                        }
                    }
                }
            }
        }
    
        def "resolves dependencies from external repository"() {
            startServer()
    
            given:
            runner.tasksToRun = ['resolveDependencies']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

            module.getArtifact(classifier: "my-sources").expectGet()
            module.getArtifact(classifier: "my-javadoc").expectGet()
    
            then:
            checkArtifactsResolvedAndCached()
        }
    
        def "resolves multiple artifacts of the same type"() {
            given:
            module.artifact(type: "source", classifier: "other-sources", ext: "jar", conf: "sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top