Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for http2client (0.21 sec)

  1. internal/config/lambda/target/webhook.go

    type WebhookTarget struct {
    	activeRequests int64
    	totalRequests  int64
    	failedRequests int64
    
    	lazyInit lazyInit
    
    	id         event.TargetID
    	args       WebhookArgs
    	transport  *http.Transport
    	httpClient *http.Client
    	loggerOnce logger.LogOnce
    	cancel     context.CancelFunc
    	cancelCh   <-chan struct{}
    }
    
    // ID - returns target ID.
    func (target *WebhookTarget) ID() event.TargetID {
    	return target.id
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		instance="prototype">
    		<property name="connectionTimeout">15000</property>
    		<property name="soTimeout">30000</property>
    	</component>
    	<component name="httpClient"
    		class="org.codelibs.fess.crawler.client.FaultTolerantClient" instance="prototype">
    		<property name="crawlerClient">internalHttpClient</property>
    		<property name="maxRetryCount">5</property>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Aug 08 12:54:47 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-versionsWithConstraints/groovy/build.gradle

                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('copyLibs', Copy) {
        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
    - 682 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-platform/quickstart/kotlin/build.gradle.kts

    }
    // 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)
  5. platforms/documentation/docs/src/snippets/java-platform/recommender/kotlin/consumer/build.gradle.kts

    }
    
    // tag::get-recommendations[]
    dependencies {
        // get recommended versions from the platform project
        api(platform(project(":platform")))
        // no version required
        api("commons-httpclient:commons-httpclient")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-platform/recommender/groovy/consumer/build.gradle

    }
    
    // tag::get-recommendations[]
    dependencies {
        // get recommended versions from the platform project
        api platform(project(':platform'))
        // no version required
        api 'commons-httpclient:commons-httpclient'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 322 bytes
    - Viewed (0)
  7. samples/extauthz/cmd/extauthz/main_test.go

    )
    
    func TestExtAuthz(t *testing.T) {
    	server := NewExtAuthzServer()
    	// Start the test server on random port.
    	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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 23 16:58:02 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. test-site/build.sbt

    libraryDependencies += "org.codelibs" % "elasticsearch-analysis-kuromoji-neologd" % "2.1.1"
    
    libraryDependencies += "org.codelibs.fess" % "fess-suggest" % "2.1.4-SNAPSHOT"
    
    libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.3.1"
    
    libraryDependencies += "org.codehaus.groovy" % "groovy-all" % "2.4.0"
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Apr 01 05:40:58 UTC 2016
    - 968 bytes
    - Viewed (0)
  9. cluster/gce/windows/common.psm1

      if ("System.Net.Http.HttpClient" -as [type]) {} else {
        Add-Type -AssemblyName System.Net.Http
      }
    
      $timeout = New-TimeSpan -Minutes 5
    
      try {
        # Use HttpClient in favor of WebClient.
        # https://docs.microsoft.com/en-us/dotnet/api/system.net.webclient?view=net-5.0#remarks
        $httpClient = New-Object -TypeName System.Net.Http.HttpClient
        $httpClient.Timeout = $timeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  10. 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)
Back to top