Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for proxyUser (0.15 sec)

  1. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

                    String protocol = getRequestingURL().getProtocol();
                    String proxyUser = systemProperties.get(protocol + ".proxyUser");
                    if (proxyUser != null) {
                        String proxyPassword = systemProperties.get(protocol + ".proxyPassword");
                        if (proxyPassword == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    		"proxied https with auth (invalid hostname + InsecureSkipVerify) -> http": {
    			serverFunc:             httptest.NewServer,
    			proxyServerFunc:        httpsServerInvalidHostname(t),
    			proxyAuth:              url.UserPassword("proxyuser", "proxypasswd"),
    			clientTLS:              &tls.Config{InsecureSkipVerify: true},
    			serverConnectionHeader: "Upgrade",
    			serverUpgradeHeader:    "SPDY/3.1",
    			serverStatusCode:       http.StatusSwitchingProtocols,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            file("gradle.properties") << """
        systemProp.http.proxyHost=localhost
        systemProp.http.proxyPort=${proxyServer.port}
        systemProp.http.nonProxyHosts=
        systemProp.http.proxyUser=my_user
        systemProp.http.proxyPassword=my_password
    """
            when:
            def result = wrapperExecuter.withTasks('hello').run()
    
            then:
            assertThat(result.output, containsString('hello'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    * `https.proxyHost`
    * `https.proxyPort`
    * `https.proxyUser`
    * `https.proxyPassword`
    * `http.nonProxyHosts` (NOTE: this is not a typo.)
    
    If the `org.gradle.s3.endpoint` property has been specified with a HTTP (not HTTPS) URI the following system proxy settings can be used:
    
    * `http.proxyHost`
    * `http.proxyPort`
    * `http.proxyUser`
    * `http.proxyPassword`
    * `http.nonProxyHosts`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
Back to top