Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/distributions-full/src/toplevel/NOTICE

    It includes the following other software:
    
    Groovy (http://groovy-lang.org)
    SLF4J (http://www.slf4j.org)
    JUnit (http://www.junit.org)
    JCIFS (http://jcifs.samba.org)
    HttpClient (https://hc.apache.org/httpcomponents-client-4.5.x/)
    
    For licenses, see the LICENSE file.
    
    If any software distributed with Gradle does not have an Apache 2 License, its license is explicitly listed in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 11 13:09:36 UTC 2021
    - 868 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. 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)
  7. 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)
  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. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

    import org.gradle.api.provider.Property
    import org.gradle.api.tasks.Internal
    import org.gradle.api.tasks.options.Option
    import org.gradle.work.DisableCachingByDefault
    import java.net.URI
    import java.net.http.HttpClient
    import java.net.http.HttpRequest
    import java.net.http.HttpResponse
    
    
    data class GitHubPullRequestSearchResult(val items: List<GitHubPullRequest>)
    
    
    data class GitHubUser(val login: String, val name: String?)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
Back to top