Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for httpPort (0.18 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/AbstractPlayExternalContinuousBuildIntegrationTest.groovy

        TestFile getPlayRunBuildFile() {
            buildFile
        }
    
        def writeSources() {
            playApp.writeSources(testDirectory)
    
            playRunBuildFile << """
                runPlay {
                    httpPort = 0
                    ${jpmsForkOptions()}
                }
            """
    
            settingsFile << """
                rootProject.name = '${playApp.name}'
            """
        }
    
        void appIsRunningAndDeployed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. samples/jwt-server/src/main_test.go

    	go server.runHTTP("localhost:0")
    	// Prepare the HTTP request.
    	httpClient := &http.Client{}
    	httpReq, err := http.NewRequest(http.MethodGet, fmt.Sprintf("http://localhost:%d/jwtkeys", <-server.httpPort), nil)
    	if err != nil {
    		t.Fatalf(err.Error())
    	}
    	resp, err := httpClient.Do(httpReq)
    	if err != nil {
    		t.Fatalf(err.Error())
    	}
    	defer resp.Body.Close()
    	if resp.StatusCode != http.StatusOK {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 23 16:58:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.play.tasks.PlayRun.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>forkOptions</td>
                </tr>
                <tr>
                    <td>httpPort</td>
                </tr>
                <tr>
                    <td>applicationJar</td>
                </tr>
                <tr>
                    <td>assetsJar</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. samples/extauthz/cmd/extauthz/main_test.go

    	go server.run("localhost:0", "localhost:0")
    
    	// Prepare the HTTP request.
    	httpClient := &http.Client{}
    	httpReq, err := http.NewRequest(http.MethodGet, fmt.Sprintf("http://localhost:%d/check", <-server.httpPort), nil)
    	if err != nil {
    		t.Fatalf(err.Error())
    	}
    
    	// Prepare the gRPC request.
    	conn, err := grpc.Dial(fmt.Sprintf("localhost:%d", <-server.grpcPort), grpc.WithTransportCredentials(insecure.NewCredentials()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 23 16:58:02 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    	httpsPort := ports.HTTP.ServicePort
    	httpsAutoPort := ports.AutoHTTPS.ServicePort
    	snis := []string{
    		model.BuildSubsetKey(model.TrafficDirectionOutbound, "", mtlsHost, httpsPort),
    		model.BuildDNSSrvSubsetKey(model.TrafficDirectionOutbound, "", mtlsHost, httpsPort),
    		model.BuildSubsetKey(model.TrafficDirectionOutbound, "", nakedHost, httpsPort),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    	// Currently runs readiness and debug (if enabled)
    	httpMux *http.ServeMux
    
    	// httpsMux listens on the httpsAddr(15017), handling webhooks
    	// If the address os empty, the webhooks will be set on the default httpPort.
    	httpsMux *http.ServeMux // webhooks
    
    	// fileWatcher used to watch mesh config, networks and certificates.
    	fileWatcher filewatcher.FileWatcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

            final HttpPost httpPost = new HttpPost(url);
            final HttpEntity postEntity = MultipartEntityBuilder.create().setMode(HttpMultipartMode.BROWSER_COMPATIBLE)
                    .setCharset(Charset.forName("UTF-8")).addBinaryBody("filedata", in).build();
            httpPost.setEntity(postEntity);
    
            try (CloseableHttpResponse response = httpClient.execute(httpPost)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

                if (alwaysSendAuth || requestMethod.equals(HttpPut.METHOD_NAME) || requestMethod.equals(HttpPost.METHOD_NAME)) {
                    CredentialsProvider credentialsProvider = (CredentialsProvider) context.getAttribute(HttpClientContext.CREDS_PROVIDER);
                    HttpHost targetHost = (HttpHost) context.getAttribute(HttpCoreContext.HTTP_TARGET_HOST);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ExcludeRuleMergingPerformanceTest.groovy

            runner.minimumBaseVersion = '5.6.4'
        }
    
        def "merge exclude rules"() {
            startServer()
    
            given:
            runner.tasksToRun = ['resolveDependencies']
            runner.args = ['-PuseHttp', "-PhttpPort=${serverPort}", "-Dorg.gradle.parallel=false"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
    
            cleanup:
            stopServer()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. pkg/test/echo/cmd/server/main.go

    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/server"
    )
    
    var (
    	httpPorts        []int
    	grpcPorts        []int
    	tcpPorts         []int
    	udpPorts         []int
    	tlsPorts         []int
    	hbonePorts       []int
    	instanceIPPorts  []int
    	localhostIPPorts []int
    	serverFirstPorts []int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top