Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for httphone (0.14 sec)

  1. 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)
  2. testing/internal-integ-testing/build.gradle.kts

        implementation(libs.commonsLang)
        implementation(libs.commonsLang3)
        implementation(libs.commonsIo)
        implementation(libs.groovyAnt)
        implementation(libs.groovyJson)
        implementation(libs.httpcore)
        implementation(libs.inject)
        implementation(libs.ivy)
        implementation(libs.jcifs)
        implementation(libs.jetty)
        implementation(libs.jettyServlet)
        implementation(libs.littleproxy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

        writeMedium(frame, 4)
        frame.writeByte(Http2.TYPE_RST_STREAM)
        frame.writeByte(FLAG_NONE)
        frame.writeInt(expectedStreamId and 0x7fffffff)
        frame.writeInt(ErrorCode.PROTOCOL_ERROR.httpCode)
        reader.nextFrame(
          requireSettings = false,
          object : BaseTestHandler() {
            override fun rstStream(
              streamId: Int,
              errorCode: ErrorCode,
            ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/RouteFailureTest.kt

      val ipv6 = InetAddress.getByName("2001:db8:ffff:ffff:ffff:ffff:ffff:1")
    
      val refusedStream =
        MockResponse(
          socketPolicy = ResetStreamAtStart(ErrorCode.REFUSED_STREAM.httpCode),
        )
      val bodyResponse = MockResponse(body = "body")
    
      @BeforeEach
      fun setUp(
        server: MockWebServer,
        @MockWebServerInstance("server2") server2: MockWebServer,
      ) {
        this.server1 = server
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue May 14 17:48:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. fess-crawler/pom.xml

    			<groupId>com.google.guava</groupId>
    			<artifactId>guava</artifactId>
    			<version>${guava.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.httpcomponents</groupId>
    			<artifactId>httpcore</artifactId>
    			<version>${httpcomponents.core.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.httpcomponents</groupId>
    			<artifactId>httpclient</artifactId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

                }
              },
            )
            .build()
    
        // Set up a same-connection retry.
        serverIpv4.enqueue(
          MockResponse(socketPolicy = ResetStreamAtStart(ErrorCode.REFUSED_STREAM.httpCode)),
        )
        serverIpv4.enqueue(
          MockResponse(body = "this was the 2nd request on IPv4"),
        )
        serverIpv6.enqueue(
          MockResponse(body = "unexpected call to IPv6"),
        )
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.pcl"/>
      </mime-type>
      <mime-type type="application/vnd.hp-pclxl">
        <glob pattern="*.pclxl"/>
      </mime-type>
      <mime-type type="application/vnd.httphone"/>
      <mime-type type="application/vnd.hydrostatix.sof-data">
        <glob pattern="*.sfd-hdstx"/>
      </mime-type>
      <mime-type type="application/vnd.hzn-3d-crossword">
        <glob pattern="*.x3d"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.hamcrestCore)              { version { strictly("1.3"); because("2.x changes the API") }}
            api(libs.hikariCP)              { version { strictly("4.0.3"); because("5.x requires Java 11+") }}
            api(libs.httpcore)              { version { strictly("4.4.14") }}
            api(libs.inject)                { version { strictly("1") }}
            api(libs.ivy)                   { version { strictly("2.5.2") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    func MonitorRequest(req *http.Request, verb, group, version, resource, subresource, scope, component string, deprecated bool, removedRelease string, httpCode, respSize int, elapsed time.Duration) {
    	requestInfo, ok := request.RequestInfoFrom(req.Context())
    	if !ok || requestInfo == nil {
    		requestInfo = &request.RequestInfo{Verb: req.Method, Path: req.URL.Path}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  10. pom.xml

    				<exclusion>
    					<groupId>org.apache.httpcomponents</groupId>
    					<artifactId>httpclient</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.apache.httpcomponents</groupId>
    					<artifactId>httpcore</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>repository-url</artifactId>
    				</exclusion>
    				<exclusion>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (1)
Back to top