Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for expectPublish (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            def rootModule = repository.module("group", "root")
            rootModule.pom.expectPublish(true, credentials)
            rootModule.moduleMetadata.expectPublish(true, credentials)
            rootModule.rootMetaData.expectGetMissing(credentials)
            rootModule.rootMetaData.expectPublish(true, credentials)
        }
    
        private Map<File, String> mavenRepoFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

        private void prepareIvyHttpRepository(IvyHttpRepository repository, PasswordCredentials credentials) {
            def rootModule = repository.module("group", "root")
            rootModule.ivy.expectPublish(true, credentials)
            rootModule.moduleMetadata.expectPublish(true, credentials)
        }
    
        private Map<File, String> ivyRepoFiles() {
            listFiles(ivyRepo.rootDir, null, true)
                .collectEntries { File repoFile ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpArtifact.groovy

                def md5File = getMd5File()
                md5File.assertIsFile()
                assert HashCode.fromString(md5File.text) == Hashing.md5().hashFile(getFile())
            }
        }
    
        void expectPublish(boolean extraChecksums = true, PasswordCredentials credentials = null) {
            expectPut(credentials)
            if (server.supportsHash(HttpServer.SupportedHash.SHA1)) {
                sha1.expectPut(credentials)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top