Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for httpClient (0.85 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            if (protocol == 'http') {
                resources.each { it.expectGetBlocking() }
            } else if (protocol == 'https') {
                // https://issues.apache.org/jira/browse/HTTPCLIENT-1478
                def keyStore = TestKeyStore.init(temporaryFolder.file('ssl-keystore'))
                keyStore.enableSslWithServerCert(server)
                keyStore.configureServerCert(executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server.go

    			// Probe has specific host header override; honor it
    			appReq.Host = values[0]
    		}
    	}
    
    	// get the http client must exist because
    	httpClient := s.appProbeClient[path]
    
    	// Send the request.
    	response, err := httpClient.Do(appReq)
    	if err != nil {
    		log.Errorf("Request to probe app failed: %v, original URL path = %v\napp URL path = %v", err, path, proberPath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

        private static final String MAVEN_RESOLVER_TRANSPORT_APACHE = "apache";
    
        private static final String MAVEN_RESOLVER_TRANSPORT_JDK = "jdk";
    
        /**
         * This name for Apache HttpClient transport is deprecated.
         *
         * @deprecated Renamed to {@link #MAVEN_RESOLVER_TRANSPORT_APACHE}
         */
        @Deprecated
        private static final String MAVEN_RESOLVER_TRANSPORT_NATIVE = "native";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    http://java.sun.com/j2se/1.5.0/docs/api http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/ http://jakarta.apache.org/commons/dbcp/apidocs/ http://jakarta.apache.org/commons/fileupload/apidocs/ http://jakarta.apache.org/commons/httpclient/apidocs/ http://jakarta.apache.org/commons/logging/apidocs/ http://jakarta.apache.org/commons/pool/apidocs/ http://www.junit.org/junit/javadoc/ http://logging.apache.org/log4j/docs/api/ http://jakarta.apache.org/regexp/apidocs/ http://jakarta.a...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    http://java.sun.com/j2se/1.5.0/docs/api http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/ http://jakarta.apache.org/commons/dbcp/apidocs/ http://jakarta.apache.org/commons/fileupload/apidocs/ http://jakarta.apache.org/commons/httpclient/apidocs/ http://jakarta.apache.org/commons/logging/apidocs/ http://jakarta.apache.org/commons/pool/apidocs/ http://www.junit.org/junit/javadoc/ http://logging.apache.org/log4j/docs/api/ http://jakarta.apache.org/regexp/apidocs/ http://jakarta.a...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 35.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    authentication schemes configuration
    
    When configuring a repository using HTTP or HTTPS transport protocols, multiple authentication schemes are available. By default, Gradle will attempt to use all schemes that are supported by the Apache HttpClient library, http://hc.apache.org/httpcomponents-client-ga/[documented here]. In some cases, it may be preferable to explicitly specify which authentication schemes should be used when exchanging credentials with a remote server. When explicitly declared,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  7. doc/godebug.md

    The environment variable `GODEBUG`
    can hold a comma-separated list of these settings.
    For example, if a Go program is running in an environment that contains
    
    	GODEBUG=http2client=0,http2server=0
    
    then that Go program will disable the use of HTTP/2 by default in both
    the HTTP client and the HTTP server.
    It is also possible to set the default `GODEBUG` for a given program
    (discussed below).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/productpage.py

    # You will see the REQUEST, including HEADERS and DATA, and RESPONSE with HEADERS but without DATA.
    # The only thing missing will be the response.body which is not logged.
    import http.client as http_client
    http_client.HTTPConnection.debuglevel = 0
    
    app = Flask(__name__)
    FlaskInstrumentor().instrument_app(app)
    logging.basicConfig(stream=sys.stdout, level=logging.INFO)
    requests_log = logging.getLogger("requests.packages.urllib3")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/runtime/metrics/doc.go

    		package due to a non-default GODEBUG=gotypesalias=... setting.
    
    	/godebug/non-default-behavior/http2client:events
    		The number of non-default behaviors executed by the net/http
    		package due to a non-default GODEBUG=http2client=... setting.
    
    	/godebug/non-default-behavior/http2server:events
    		The number of non-default behaviors executed by the net/http
    		package due to a non-default GODEBUG=http2server=... setting.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top