Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,103 for expectGet (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                lib.moduleMetadata.expectGet()
                lib.pom.expectGet()
                return lib
            }
            publishLib("lib-core", "1.0").with {
                it.rootMetaData.expectGet()
                it.artifact.expectGet()
            }
            publishLib("lib-core", "1.1")
            publishLib("lib-ext", "1.0").with {
                it.rootMetaData.expectGet()
                it.artifact.expectGet()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

        }
    }
    """
    
            when:
            projectA.pom.expectGet()
            projectA.artifact.expectGet()
            projectB.pom.expectGet()
            projectB.artifact.expectGet()
            projectC.pom.expectGet()
            projectC.artifact.expectGet()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            """
    
            when:
            lib1.pom.expectGet()
            lib1.artifact.expectGet()
            lib2.pom.expectGet()
            lib2.artifact.expectGet()
            lib3.pom.expectGet()
            lib3.artifact.expectGet()
    
            lib4.pom.expectGet()
            lib4.artifact.expectGet()
            lib5.pom.expectGet()
            lib5.artifact.expectGet()
    
            then:
            run ':checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpResource.groovy

        }
    
        void expectPut(PasswordCredentials credentials) {
            expectPut(200, credentials)
        }
    
        void expectPut(String username, String password) {
            server.expectPut(getPath(), username, password, getFile())
        }
    
        void expectPut(Integer statusCode = 200, PasswordCredentials credentials = null) {
            server.expectPut(getPath(), getFile(), statusCode, credentials)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/AbstractHttpResource.groovy

        abstract void expectHeadMissing()
    
        abstract void expectHeadRevalidate()
    
        abstract void expectPut()
    
        abstract void expectPutBroken()
    
        @Override
        void expectDownload() {
            expectGet()
        }
    
        @Override
        void expectDownloadBroken() {
            expectGetBroken()
        }
    
        @Override
        void expectDownloadMissing() {
            expectGetMissing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                }
            """
            def configurationCache = newConfigurationCacheFixture()
    
            remoteRepo.getModuleMetaData("thing", "lib").expectGet()
            v3.pom.expectGet()
            v3.artifact.expectGet()
    
            when:
            configurationCacheRun("resolve1")
    
            then:
            configurationCache.assertStateStored()
            outputContains("result = [lib-1.3.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

        }
    }
    """
    
            when:
            m1.ivy.expectGet()
            // Only request once, both artifacts have the same url and only differ by type. Should probably be the same artifact
            m1.getArtifact(type: '', ext: '').expectGet()
            m1.getArtifact(type: '', ext: '', classifier: 'classy').expectGet()
    
            run 'show'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

            """
            checkConfiguration("compileClasspath")
    
            when:
            platform.pom.expectGet()
            platform.moduleMetadata.expectGet()
            foo11.pom.expectGet()
            foo11.moduleMetadata.expectGet()
            foo10.pom.expectGet()
            foo10.moduleMetadata.expectGet()
            foo10.artifact.expectGet()
    
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top