Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for proxyTest (0.27 sec)

  1. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3ProxiedRepoIntegrationTest.groovy

            module.pom.expectDownload()
            module.artifact.expectDownload()
    
            when:
            executer.withArguments(
                    "-Dorg.gradle.s3.endpoint=${server.uri}",
                    "-Dhttp.proxyHost=localhost",
                    "-Dhttp.proxyPort=${proxyServer.port}",
                    "-Dhttp.nonProxyHosts=foo",
                    "-Dhttp.proxyUser=proxyUser",
                    "-Dhttp.proxyPassword=proxyPassword"
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            }
    
            // proxy
            final String proxyHost = getInitParameter(PROXY_HOST_PROPERTY, this.proxyHost, String.class);
            final Integer proxyPort = getInitParameter(PROXY_PORT_PROPERTY, this.proxyPort, Integer.class);
            if (proxyHost != null && proxyPort != null) {
                final HttpHost proxy = new HttpHost(proxyHost, proxyPort);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            prepareWrapper(server.uri.toString())
            server.expect(server.get("/$TEST_DISTRIBUTION_URL").sendFile(distribution.binDistribution))
    
            file("gradle.properties") << """
        systemProp.http.proxyHost=localhost
        systemProp.http.proxyPort=${proxyServer.port}
        systemProp.http.nonProxyHosts=
    """
            when:
            def result = wrapperExecuter.withTasks('hello').run()
    
            then:
    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/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            given:
            proxyServer.start()
    
            // Note that the HTTPS protocol handler uses the same nonProxyHosts property as the HTTP protocol.
            file("gradle.properties") << """
        systemProp.https.proxyHost=localhost
        systemProp.https.proxyPort=${proxyServer.port}
        systemProp.http.nonProxyHosts=
    """
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getAuthenticatedBaseUrl())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ClientTest.groovy

            s3Properties.getMaxErrorRetryCount() >> Optional.absent()
            when:
            S3Client s3Client = new S3Client(credentials(), s3Properties)
    
            then:
            s3Client.amazonS3Client.clientConfiguration.proxyHost == 'localhost'
            s3Client.amazonS3Client.clientConfiguration.proxyPort == 8080
            s3Client.amazonS3Client.clientConfiguration.proxyPassword == 'password'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

            }
    
            // proxy credentials
            final String proxyHost = paramMap.get(CRAWLER_WEB_PREFIX + "proxyHost");
            final String proxyPort = paramMap.get(CRAWLER_WEB_PREFIX + "proxyPort");
            if (StringUtil.isNotBlank(proxyHost) && StringUtil.isNotBlank(proxyPort)) {
                factoryParamMap.put(HcHttpClient.PROXY_HOST_PROPERTY, proxyHost);
                factoryParamMap.put(HcHttpClient.PROXY_PORT_PROPERTY, proxyPort);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/storage/storage.go

    	LegacyBinding       *LegacyBindingREST
    	Eviction            *EvictionREST
    	Status              *StatusREST
    	EphemeralContainers *EphemeralContainersREST
    	Log                 *podrest.LogREST
    	Proxy               *podrest.ProxyREST
    	Exec                *podrest.ExecREST
    	Attach              *podrest.AttachREST
    	PortForward         *podrest.PortForwardREST
    }
    
    // REST implements a RESTStorage for pods
    type REST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                    rhList.toArray(new org.codelibs.fess.crawler.client.http.RequestHeader[rhList.size()]));
    
            final String proxyHost = (String) paramMap.get(Param.Client.PROXY_HOST);
            final String proxyPort = (String) paramMap.get(Param.Client.PROXY_PORT);
            if (StringUtil.isNotBlank(proxyHost) && StringUtil.isNotBlank(proxyPort)) {
                // proxy credentials
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TestProxyServer.groovy

            }
        }
    
        void configureProxyHost(GradleExecuter executer, String proxyScheme) {
            assert port > 0
            executer.withArgument("-D${proxyScheme}.proxyHost=localhost")
            executer.withArgument("-D${proxyScheme}.proxyPort=${port}")
            // use proxy even when accessing localhost
            executer.withArgument("-Dhttp.nonProxyHosts=")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/grpcgen.go

    // using the generic structures. "Classical" CDS/LDS/RDS/EDS use separate logic -
    // this is used for the API-based LDS and generic messages.
    
    var log = istiolog.RegisterScope("grpcgen", "xDS Generator for Proxyless gRPC")
    
    type GrpcConfigGenerator struct{}
    
    func clusterKey(hostname string, port int) string {
    	return subsetClusterKey("", hostname, port)
    }
    
    func subsetClusterKey(subset, hostname string, port int) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top