Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for http_server (0.17 sec)

  1. mockwebserver/src/test/java/mockwebserver3/internal/http2/Http2Server.kt

        }
      }
    
      companion object {
        val logger: Logger = Logger.getLogger(Http2Server::class.java.name)
    
        @JvmStatic
        fun main(args: Array<String>) {
          if (args.size != 1 || args[0].startsWith("-")) {
            println("Usage: Http2Server <base directory>")
            return
          }
          val server =
            Http2Server(
              File(args[0]),
              localhost().sslContext().socketFactory,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. 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)
  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. pkg/proxy/healthcheck/service_health.go

    	nsn  types.NamespacedName
    	port uint16
    
    	httpServers []httpServer
    
    	endpoints int // number of local endpoints for a service
    }
    
    // listenAll opens health check port on all the addresses provided
    func (hcI *hcInstance) listenAndServeAll(hcs *server) error {
    	var err error
    	var listener net.Listener
    
    	hcI.httpServers = make([]httpServer, 0, len(hcs.nodeIPs))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 30 09:25:48 UTC 2023
    - 8.9K 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. 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)
  8. 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)
  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