Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for proxyUser (0.16 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. maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

            //    <proxy>
            //      <active>true</active>
            //      <protocol>http</protocol>
            //      <host>proxy.somewhere.com</host>
            //      <port>8080</port>
            //      <username>proxyuser</username>
            //      <password>somepassword</password>
            //      <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
            //    </proxy>
            //  </proxies>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/maven/conf/settings.xml

        <!-- proxy
         | Specification for one proxy, to be used in connecting to the network.
         |
        <proxy>
          <id>optional</id>
          <active>true</active>
          <protocol>http</protocol>
          <username>proxyuser</username>
          <password>proxypass</password>
          <host>proxy.host.net</host>
          <port>80</port>
          <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
        </proxy>
        -->
      </proxies>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. 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