Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,605 for expectGet (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleArtifactResolutionIntegrationTest.groovy

            when:
            module.ivy.expectGet()
    
            then:
            checkArtifactsResolvedAndCached()
    
            when:
            module.publishWithChangedContent()
    
            and:
            server.resetExpectations()
            module.ivy.expectHead()
            module.ivy.sha1.expectGet()
            module.ivy.expectGet()
    
            then:
            executer.withArgument(execArg)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingCrossVersionIntegrationTest.groovy

            mod1.pom.expectGet()
            mod1.artifact.expectGet()
            if (previous.version <= GradleVersion.version("1.8")) {
                mod2.pom.expectGet()
                mod2.artifact.expectGet()
            } else {
                mod2.pom.expectHead()
                mod2.pom.sha1.expectGet()
                mod2.artifact.expectHead()
                mod2.artifact.sha1.expectGet()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/artifactreuse/CacheReuseCrossVersionIntegrationTest.groovy

            when:
            server.resetExpectations()
            mavenHttpRepo.getModuleMetaData("org.name", "projectB").expectGet()
            projectB.pom.expectHead()
            projectB.pom.sha1.expectGet()
            projectB.artifact.expectHead()
            projectB.artifact.sha1.expectGet()
    
            and:
            version current withGradleUserHomeDir userHome withTasks 'retrieve' withArguments '-i' run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenModuleArtifactResolutionIntegrationTest.groovy

            when:
            module.pom.expectGet()
    
            then:
            checkArtifactsResolvedAndCached()
    
            when:
            module.publishWithChangedContent()
    
            and:
            server.resetExpectations()
            module.pom.expectHead()
            module.pom.sha1.expectGet()
            module.pom.expectGet()
    
            then:
            executer.withArgument(execArg)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

            when:
            server.expectGet('/' + scriptName, scriptFile)
    
            then:
            succeeds 'help'
            output.contains('loaded external script 1')
    
            when:
            scriptFile.setText("""println 'loaded external script 2'""", "UTF-8")
            server.expectHead('/' + scriptName, scriptFile)
            server.expectGet('/' + scriptName, scriptFile)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

            def module = ivyHttpRepo.module('group', 'projectA', '1.2').extendsFrom(organisation: 'group', module: 'parent', revision: 'a').publish()
    
            when:
            module.ivy.expectGet()
            parent.ivy.expectGet()
    
            then:
            fails "checkDeps"
            failedResolve.assertFailurePresent(failure)
            failure
                .assertResolutionFailure(":compile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

        retrieve.dependsOn(':a:retrieve')
    }
    """
    
            when:
            module1.ivy.expectGet()
            module1.jar.expectGet()
    
            module2.ivy.expectHead()
            module2.ivy.sha1.expectGet()
            module2.ivy.expectGet()
            module2.jar.expectHead()
            module2.jar.sha1.expectGet()
            module2.jar.expectGet()
    
            then:
            succeeds 'retrieve'
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpPluginRepository.groovy

            module(pluginId, pluginId + PLUGIN_MARKER_SUFFIX, pluginVersion).with {
                pom.expectGet()
                artifact.expectGet()
                allowAll()
            }
            module(group, artifactId, version).with {
                pom.expectGet()
                artifact.expectGet()
                allowAll()
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorResolveIntegrationTest.groovy

        }
    }
    """
            resolve.prepare()
    
            and:
            dep.ivy.expectGet()
            parentModule.ivy.expectGet()
            depModule.ivy.expectGet()
            dep.jar.expectGet()
            depModule.jar.expectGet()
    
            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

                        doLast {
                            compileClasspath.files
                        }
                    }
                """
            }
    
            module.pom.expectGet()
            module.artifact.expectGet()
    
            when:
            run 'resolveDependencies'
    
            then:
            noExceptionThrown()
        }
    
        def "dependency is only downloaded at most once per build using Ivy"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top