Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for proxyTest (0.34 sec)

  1. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/JavaSystemPropertiesProxySettingsTest.groovy

    import spock.lang.Specification
    
    class JavaSystemPropertiesProxySettingsTest extends Specification {
    
        def "proxy is not configured when proxyHost property not set"() {
            expect:
            def settings = settings(proxyHost, proxyPort)
            settings.getProxy() == null
    
            where:
            proxyHost | proxyPort | requestHost
            null      | null      | null
            null      | null      | "foo"
            null      | "111"     | "foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pkg/registry/core/node/storage/storage.go

    	statusStore.ResetFieldsStrategy = node.StatusStrategy
    
    	// Set up REST handlers
    	nodeREST := &REST{Store: store, proxyTransport: proxyTransport}
    	statusREST := &StatusREST{store: &statusStore}
    	proxyREST := &noderest.ProxyREST{Store: store, ProxyTransport: proxyTransport}
    
    	// Build a NodeGetter that looks up nodes using the REST handler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/grpc-simple.yaml.injected

            image: busybox:1.28
            name: grpc-bootstrap-init
            resources: {}
            volumeMounts:
            - mountPath: /var/lib/grpc/data/
              name: grpc-io-proxyless-bootstrap
          volumes:
          - emptyDir: {}
            name: grpc-io-proxyless-bootstrap
    status: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/networking.adoc

    For example, setting the HTTP proxy host would be done with `System.setProperty('http.proxyHost', 'www.somehost.org')`.
    
    Alternatively, the properties can be <<build_environment.adoc#sec:gradle_configuration_properties,specified in `gradle.properties`>>.
    
    *Example 1:* Configuring an HTTP proxy using `gradle.properties`:
    ====
    ----
    systemProp.http.proxyHost=www.somehost.org
    systemProp.http.proxyPort=8080
    systemProp.http.proxyUser=userid
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/JavaSystemPropertiesProxySettings.java

                    getAndTrimSystemProperty(propertyPrefix + ".proxyHost"),
                    getAndTrimSystemProperty(propertyPrefix + ".proxyPort"),
                    getAndTrimSystemProperty(propertyPrefix + ".proxyUser"),
                    getAndTrimSystemProperty(propertyPrefix + ".proxyPassword"));
        }
    
        JavaSystemPropertiesProxySettings(String propertyPrefix, int defaultPort, String proxyHost, String proxyPortString, String proxyUser, String proxyPassword) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/files/grpc-simple.yaml

            value: "99"
          - name: GRPC_GO_LOG_SEVERITY_LEVEL
            value: info
        volumeMounts:
          - mountPath: /var/lib/grpc/data/
            name: grpc-io-proxyless-bootstrap
      {{- end }}
      volumes:
        - name: grpc-io-proxyless-bootstrap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String proxyHost = fessConfig.getHttpProxyHost();
            final String proxyPort = fessConfig.getHttpProxyPort();
            if (StringUtil.isNotBlank(proxyHost) && StringUtil.isNotBlank(proxyPort)) {
                paramMap.put(Param.Client.PROXY_HOST, proxyHost);
                paramMap.put(Param.Client.PROXY_PORT, proxyPort);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/workloadclass.go

    // limitations under the License.
    
    package echo
    
    // WorkloadClass is the class of workload in the echo instance
    type WorkloadClass = string
    
    const (
    	Proxyless   WorkloadClass = "proxyless"
    	VM          WorkloadClass = "vm"
    	Sotw        WorkloadClass = "sotw"
    	TProxy      WorkloadClass = "tproxy"
    	Naked       WorkloadClass = "naked"
    	External    WorkloadClass = "external"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top