Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for httpPort (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesWorkingWithDependenciesIntegrationTest.groovy

            normalizedContent.contains('org.slf4j/slf4j-api/1.7.2/81d61b7f33ebeab314e07de0cc596f8e858d97/slf4j-api-1.7.2.jar')
            normalizedContent.contains('org.apache.httpcomponents/httpcore/4.3.3/f91b7a4aadc5cf486df6e4634748d7dd7a73f06d/httpcore-4.3.3.jar')
            normalizedContent.contains('commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar')
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/software/resources-http/build.gradle.kts

        api(projects.serviceProvider)
        api(project(":core-api"))
        api(project(":core"))
        api(project(":logging"))
        api(project(":resources"))
    
        api(libs.commonsHttpclient)
        api(libs.httpcore)
        api(libs.jsr305)
    
        implementation(project(":base-services"))
        implementation(project(":hashing"))
        implementation(project(":logging-api"))
        implementation(project(":model-core"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                    credentialsProvider.setCredentials(authScope, authentication.getCredentials());
                    if (authScope.getHost() != null && authScheme != null) {
                        final HttpHost targetHost = new HttpHost(authScope.getHost(), authScope.getPort());
                        authCache.put(targetHost, authScheme);
                    }
                }
            }
    
            httpClientContext.setAuthCache(authCache);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  8. module.xml

    				<include name="lang-painless/asm-*" />
    				<include name="reindex/commons-codec-*" />
    				<include name="reindex/commons-logging-*" />
    				<include name="reindex/httpclient-*" />
    				<include name="reindex/httpcore-4*" />
    			</fileset>
    		</delete>
    	</target>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/build.gradle.kts

        implementation(libs.asmCommons)
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
        implementation(libs.fastutil)
        implementation(libs.gson)
        implementation(libs.httpcore)
    
        testImplementation(project(":build-cache-packaging"))
        testImplementation(project(":diagnostics"))
        testImplementation(project(":process-services"))
        testImplementation(libs.asmUtil)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val guava = "com.google.guava:guava"
        val h2Database = "com.h2database:h2"
        val hamcrest = "org.hamcrest:hamcrest"
        val hamcrestCore = "org.hamcrest:hamcrest-core"
        val httpcore = "org.apache.httpcomponents:httpcore"
        val inject = "javax.inject:javax.inject"
        val ivy = "org.apache.ivy:ivy"
        val jacksonAnnotations = "com.fasterxml.jackson.core:jackson-annotations"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top