Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 117 for http2Server (0.16 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/HttpsServer.java

    import okhttp3.mockwebserver.MockWebServer;
    import okhttp3.tls.HandshakeCertificates;
    import okhttp3.tls.HeldCertificate;
    
    /**
     * Create an HTTPS server with a self-signed certificate that OkHttp trusts.
     */
    public class HttpsServer {
      public void run() throws Exception {
        HeldCertificate localhostCertificate = new HeldCertificate.Builder()
            .addSubjectAlternativeName("localhost")
            .build();
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 02 14:04:37 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

     */
    class HttpServer extends ServerWithExpectations implements HttpServerFixture {
    
        private final static Logger logger = LoggerFactory.getLogger(HttpServer.class)
    
        protected Matcher expectedUserAgent = null
    
        List<ServerExpectation> expectations = []
    
        boolean chunkedTransfer = false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpsServer.java

         */
        public void configure(TestKeyStore testKeyStore, boolean needClientAuth, Predicate<String> tlsProtocolFilter) {
            HttpsServer httpsServer = (HttpsServer) this.server;
            SSLContext context = testKeyStore.asServerSSLContext();
            httpsServer.setHttpsConfigurator(new HttpsConfigurator(context) {
                @Override
                public void configure(HttpsParameters params) {
                    SSLContext c = getSSLContext();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    		// use ReadHeaderTimeout instead of ReadTimeout.
    		s.httpServer.ReadTimeout = 0
    		s.httpServer.ReadHeaderTimeout = 30 * time.Second
    		s.httpServer.Handler = multiplexHandler
    	}
    
    	if args.ServerOptions.MonitoringAddr == "" {
    		s.monitoringMux = s.httpMux
    		log.Infof("initializing Istiod admin server multiplexed on httpAddr %v", s.httpServer.Addr)
    	} else {
    		log.Info("initializing Istiod admin server")
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperTimeoutTest.groovy

        @Rule HttpServer httpServer = new HttpServer()
        @Subject HttpClientHelper client = new HttpClientHelper(new DocumentationRegistry(), httpSettings)
    
        def "throws exception if socket timeout is reached"() {
            given:
            httpServer.expectGetBlocking("/")
            httpServer.start()
    
            when:
            client.performRequest(new HttpGet("${httpServer.uri}/"), false)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/integTest/groovy/org/gradle/internal/resource/transport/http/CookieHeaderTest.groovy

    import org.gradle.internal.logging.ConfigureLogging
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.junit.Rule
    import spock.lang.Specification
    
    import javax.servlet.http.HttpServletRequest
    import javax.servlet.http.HttpServletResponse
    
    class CookieHeaderTest extends Specification {
    
        @Rule
        HttpServer httpServer = new HttpServer()
        CollectingTestOutputEventListener listener = new CollectingTestOutputEventListener()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

    import org.junit.Rule
    
    class ParallelSourceDependencyIntegrationTest extends AbstractIntegrationSpec {
        @Rule BlockingHttpServer httpServer = new BlockingHttpServer()
        @Rule GitHttpRepository repo = new GitHttpRepository(httpServer, "test", temporaryFolder.getTestDirectory())
    
        def setup() {
            httpServer.start()
    
            settingsFile << """
                rootProject.name = 'consumer'
                gradle.rootProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpArtifact.groovy

            expectPut(credentials)
            if (server.supportsHash(HttpServer.SupportedHash.SHA1)) {
                sha1.expectPut(credentials)
            }
            if (extraChecksums) {
                if (server.supportsHash(HttpServer.SupportedHash.SHA256)) {
                    sha256.expectPut(credentials)
                }
                if (server.supportsHash(HttpServer.SupportedHash.SHA512)) {
                    sha512.expectPut(credentials)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutorsIntegrationTest.groovy

            httpServer.start()
    
            given:
            buildFile << """
                def executors = $executors
    
                task check {
                    doLast {
                        executors.userJobExecutor.execute {
                            ${httpServer.callFromBuild("background")}
                        }
                        ${httpServer.callFromBuild("task.action")}
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. pkg/proxy/healthcheck/common.go

    type httpServerFactory interface {
    	// New creates an instance of a type satisfying HTTPServer.  This is
    	// designed to include http.Server.
    	New(addr string, handler http.Handler) httpServer
    }
    
    // httpServer allows for testing of ServiceHealthServer and ProxierHealthServer.
    // It is designed so that http.Server satisfies this interface,
    type httpServer interface {
    	Serve(listener net.Listener) error
    	Close() error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 29 09:11:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top