Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for authentication_attempts (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

            then:
            succeeds('listJars')
            and:
            server.authenticationAttempts.asList() == authenticationAttempts
    
            where:
            authSchemeName     | configuredAuthentication                                                      | authScheme        | authenticationAttempts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            then:
            noneSkipped()
            httpBuildCacheServer.authenticationAttempts == ['Basic'] as Set
    
            expect:
            withBuildCache().run "clean"
    
            when:
            withBuildCache().run "jar"
            then:
            skipped ":compileJava"
            httpBuildCacheServer.authenticationAttempts == ['Basic'] as Set
        }
    
        def "credentials can be specified via URL"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

            result == 'Old'
            server.authenticationAttempts == ['Basic'] as Set
    
            server.expectPut("/cache/${key.hashCode}", config.credentials.username, config.credentials.password, destFile)
    
            when:
            def content = "Data".bytes
            cache.store(key, writer(content))
            then:
            destFile.bytes == content
            server.authenticationAttempts == ['Basic'] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top