Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for proxyUser (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.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
    - 8.1K 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/net/http/transport.go

    }
    
    func (cm *connectMethod) key() connectMethodKey {
    	proxyStr := ""
    	targetAddr := cm.targetAddr
    	if cm.proxyURL != nil {
    		proxyStr = cm.proxyURL.String()
    		if (cm.proxyURL.Scheme == "http" || cm.proxyURL.Scheme == "https") && cm.targetScheme == "http" {
    			targetAddr = ""
    		}
    	}
    	return connectMethodKey{
    		proxy:  proxyStr,
    		scheme: cm.targetScheme,
    		addr:   targetAddr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top