Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for proxyUser (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TestProxyServer.groovy

            configureProxyHost(executer, proxyScheme)
    
            if (userName) {
                executer.withArgument("-D${proxyScheme}.proxyUser=${userName}")
            }
            if (password) {
                executer.withArgument("-D${proxyScheme}.proxyPassword=${password}")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            file("gradle.properties") << """
        systemProp.https.proxyHost=localhost
        systemProp.https.proxyPort=${proxyServer.port}
        systemProp.http.nonProxyHosts=
        systemProp.https.proxyUser=my_user
        systemProp.https.proxyPassword=my_password
        systemProp.jdk.http.auth.tunneling.disabledSchemes=
    """
    
            when:
            def result = wrapperExecuter.withTasks('hello').run()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top