Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for configureErrorRetryCount (0.31 sec)

  1. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ConnectionProperties.java

            proxySettings = new JavaSystemPropertiesHttpProxySettings();
            secureProxySettings = new JavaSystemPropertiesSecureHttpProxySettings();
            maxErrorRetryCount = configureErrorRetryCount(getProperty(S3_MAX_ERROR_RETRY));
            partSize = DEFAULT_PART_SIZE;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ConnectionPropertiesTest.groovy

            then:
            properties.getProxy().get() == secureProxy
        }
    
        def "should report invalid maxErrorRetryCount=#value"() {
            when:
            s3ConnectionProperties.configureErrorRetryCount(value)
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message == "System property [org.gradle.s3.maxErrorRetry=$value]  must be a valid positive Integer"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top