Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 116 for http2client (0.24 sec)

  1. platforms/documentation/docs/src/snippets/java-platform/quickstart/groovy/build.gradle

    }
    // end::use-plugin[]
    
    
    // tag::repo[]
    repositories {
        mavenCentral()
    }
    // end::repo[]
    
    // tag::constraints[]
    dependencies {
        constraints {
            api 'commons-httpclient:commons-httpclient:3.1'
            runtime 'org.postgresql:postgresql:42.2.5'
        }
    }
    // end::constraints[]
    
    // tag::platform[]
    // tag::allow-dependencies[]
    javaPlatform {
        allowDependencies()
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 554 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-versionsWithConstraints/kotlin/build.gradle.kts

                because("previous versions have a bug impacting this application")
            }
            implementation("commons-codec:commons-codec:1.11") {
                because("version 1.9 pulled from httpclient has bugs affecting this application")
            }
        }
    }
    // end::dependency-constraints[]
    
    tasks.register<Copy>("copyLibs") {
        from(configurations.compileClasspath)
        into(layout.buildDirectory.dir("libs"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 684 bytes
    - Viewed (0)
  3. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesWorkingWithDependenciesIntegrationTest.groovy

            normalizedContent.contains('org.apache.httpcomponents/httpclient/4.3.6/4c47155e3e6c9a41a28db36680b828ced53b8af4/httpclient-4.3.6.jar')
            normalizedContent.contains('commons-codec/commons-codec/1.7/9cd61d269c88f9fb0eb36cea1efcd596ab74772f/commons-codec-1.7.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/publishing/javaLibrary/groovy/build.gradle

    // tag::apply-plugins[]
    plugins {
        id 'java-library'
        id 'maven-publish'
    }
    // end::apply-plugins[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        api 'commons-httpclient:commons-httpclient:3.1'
        implementation 'org.apache.commons:commons-lang3:3.5'
    }
    
    // tag::configure-publishing[]
    group = 'org.example'
    version = '1.0'
    
    // tag::enable-build-id[]
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/config-inject/build.gradle

        }
    <% } %>
        mavenCentral()
    }
    
    dependencies {
        implementation 'commons-lang:commons-lang:2.5'
        implementation "commons-httpclient:commons-httpclient:3.0"
        implementation "commons-codec:commons-codec:1.2"
        implementation "org.slf4j:jcl-over-slf4j:1.7.10"
        implementation "org.codehaus:groovy:groovy-all:2.4.15"
        implementation "commons-codec:commons-codec:1.2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. samples/compare/build.gradle.kts

      testImplementation(projects.mockwebserver3)
      testRuntimeOnly(projects.mockwebserver3Junit5)
      testImplementation(projects.okhttpTls)
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.httpClient5)
      testImplementation(libs.jettyClient)
      testImplementation(libs.junit)
      testImplementation(libs.assertk)
    }
    
    tasks.compileJava {
      options.isWarnings = false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 470 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/build.gradle.kts

    // tag::apply-plugins[]
    plugins {
        `java-library`
        `maven-publish`
    }
    // end::apply-plugins[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        api("commons-httpclient:commons-httpclient:3.1")
        implementation("org.apache.commons:commons-lang3:3.5")
    }
    
    // tag::configure-publishing[]
    group = "org.example"
    version = "1.0"
    
    // tag::enable-build-id[]
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/build.gradle

                doLast {
                    Thread.sleep(100)
                }
            }
        }
    }
    
    dependencies {
        implementation 'commons-lang:commons-lang:2.5'
        implementation "commons-httpclient:commons-httpclient:3.0"
        implementation "commons-codec:commons-codec:1.2"
        implementation "org.slf4j:jcl-over-slf4j:1.7.10"
        implementation "org.codehaus.groovy:groovy:2.4.10"
        testImplementation 'junit:junit:4.13'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. internal/event/target/webhook.go

    	}
    	return nil
    }
    
    // WebhookTarget - Webhook target.
    type WebhookTarget struct {
    	initOnce once.Init
    
    	id         event.TargetID
    	args       WebhookArgs
    	transport  *http.Transport
    	httpClient *http.Client
    	store      store.Store[event.Event]
    	loggerOnce logger.LogOnce
    	cancel     context.CancelFunc
    	cancelCh   <-chan struct{}
    
    	addr string // full address ip/dns with a port number, e.g.  x.x.x.x:8080
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    org.slf4j.simpleLogger.cacheOutputStream=true
    org.slf4j.simpleLogger.levelInBrackets=true
    org.slf4j.simpleLogger.log.Sisu=info
    org.slf4j.simpleLogger.warnLevelString=WARNING
    
    # MNG-6181: mvn -X also prints all debug logging from HttpClient
    org.slf4j.simpleLogger.log.org.apache.http=off
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 16 16:19:23 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top