Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for httpPort (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

                    final HttpPost httpPost = new HttpPost(tokenUrl);
                    if (StringUtil.isNotBlank(tokenReqParams)) {
                        final HttpEntity httpEntity = parseRequestParameters(tokenReqParams, null, encoding);
                        httpPost.setEntity(httpEntity);
                    }
                    httpRequest = httpPost;
                } else {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/AlwaysFollowAndPreserveMethodRedirectStrategy.java

            if (method.equalsIgnoreCase(HttpHead.METHOD_NAME)) {
                return new HttpHead(uri);
            } else if (method.equalsIgnoreCase(HttpPost.METHOD_NAME)) {
                return this.copyEntity(new HttpPost(uri), request);
            } else if (method.equalsIgnoreCase(HttpPut.METHOD_NAME)) {
                return this.copyEntity(new HttpPut(uri), request);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/build.gradle.kts

    }
    
    description = "Implementation for interacting with HTTP build caches"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
    
        api(libs.httpcore)
        api(libs.inject)
        api(libs.jsr305)
    
        api(project(":base-services"))
        api(project(":build-cache-spi"))
        api(project(":core-api"))
        api(project(":resources-http"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/LargeDependencyGraphPerformanceTest.groovy

        def "resolve large dependency graph (parallel = #parallel, locking = #locking)"() {
            startServer()
    
            given:
            runner.tasksToRun = ['resolveDependencies']
            runner.args = ['-PuseHttp', "-PhttpPort=${serverPort}", '-PnoExcludes']
            if (parallel) {
                runner.args += '--parallel'
            }
            if (locking) {
                runner.args += '-PuseLocking'
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top