Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 456 for 11 (0.01 sec)

  1. .github/ISSUE_TEMPLATE/11-language-change.yml

    Branden J Brown <******@****.***> 1723055759 -0500
    Registered: 2025-05-27 11:13
    - Last Modified: 2024-08-08 19:02
    - 4.7K bytes
    - Viewed (0)
  2. .github/workflows/build.yml

              distribution: 'zulu'
              java-version: 11
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v4
    
          - name: Run Checks
            run: ./gradlew test -Dtest.java.version=11
    
          - name: Publish Test Report
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-29 17:52
    - 19.3K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http/StatusLineTest.kt

      }
    
      @Test
      fun nonThreeDigitCode() {
        assertInvalid("HTTP/1.1  OK")
        assertInvalid("HTTP/1.1 2 OK")
        assertInvalid("HTTP/1.1 20 OK")
        assertInvalid("HTTP/1.1 2000 OK")
        assertInvalid("HTTP/1.1 two OK")
        assertInvalid("HTTP/1.1 2")
        assertInvalid("HTTP/1.1 2000")
        assertInvalid("HTTP/1.1 two")
      }
    
      @Test
      fun truncated() {
        assertInvalid("")
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 3.5K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RequestLine.kt

            append(request.url)
          } else {
            append(requestPath(request.url))
          }
          append(" HTTP/1.1")
        }
    
      /**
       * Returns true if the request line should contain the full URL with host and port (like "GET
       * http://android.com/foo HTTP/1.1") or only the path (like "GET /foo HTTP/1.1").
       */
      private fun includeAuthorityInRequestLine(
        request: Request,
        proxyType: Proxy.Type,
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 1.9K bytes
    - Viewed (0)
  5. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

        applicationLogs
          .assertLogEqual("--> GET $url")
          .assertLogMatch(Regex("""<-- 200 OK $url \(\d+ms, 0-byte body\)"""))
          .assertNoMoreLogs()
        networkLogs
          .assertLogEqual("--> GET $url http/1.1")
          .assertLogMatch(Regex("""<-- 200 OK $url \(\d+ms, 0-byte body\)"""))
          .assertNoMoreLogs()
      }
    
      @Test
      fun basicPost() {
        setLevel(Level.BASIC)
        server.enqueue(MockResponse())
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-10 11:15
    - 37.7K bytes
    - Viewed (0)
  6. internal/event/config_test.go

    	      </Filter>
    	      <Queue>arn:minio:sqs:us-east-1:1:webhook</Queue>
    	      <Event>s3:ObjectCreated:Put</Event>
    	   </QueueConfiguration>
    	</NotificationConfiguration>
    	`)
    
    	dataCase3 := []byte(`
    	<NotificationConfiguration>
    	   <QueueConfiguration>
    	      <Id>1</Id>
    	      <Filter></Filter>
    	      <Queue>arn:minio:sqs:us-east-1:1:webhook</Queue>
    	      <Event>s3:ObjectAccessed:*</Event>
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-09 14:28
    - 28.9K bytes
    - Viewed (0)
  7. mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt

        val socket =
          FakeSocket(
            localAddress = InetAddress.getByAddress("127.0.0.1", byteArrayOf(127, 0, 0, 1)),
            localPort = 80,
          )
        val request = RecordedRequest("GET / HTTP/1.1", headers, emptyList(), 0, Buffer(), 0, socket)
        assertThat(request.requestUrl.toString()).isEqualTo("http://127.0.0.1/")
      }
    
      @Test fun testIpv6() {
        val socket =
          FakeSocket(
            localAddress =
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 14:51
    - 3K bytes
    - Viewed (0)
  8. .github/workflows/update-rbe.yml

            map sigbuild-r2.10-python3.10 2.10-python3.10
            # TF 2.11
            map sigbuild-r2.11 2.11-python3.9
            map sigbuild-r2.11-python3.8 2.11-python3.8
            map sigbuild-r2.11-python3.9 2.11-python3.9
            map sigbuild-r2.11-python3.10 2.11-python3.10
            # WIP Clang Containers, used by TVCs
            map sigbuild-57469 57469-python3.9
            map sigbuild-57469-python3.8 57469-python3.8
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-01 08:48
    - 7.2K bytes
    - Viewed (0)
  9. common/config/license-lint.yml

      - AFL-2.1
      - AFL-3.0
      - Artistic-1.0
      - Artistic-2.0
      - Apache-1.1
      - BSD-1-Clause
      - BSD-2-Clause
      - BSD-3-Clause
      - 0BSD
      - FTL
      - LPL-1.02
      - MS-PL
      - MIT
      - NCSA
      - OpenSSL
      - PHP-3.0
      - TCP-wrappers
      - W3C
      - Xnet
      - Zlib
    
    reciprocal_licenses:
      - CC0-1.0
      - APSL-2.0
      - CDDL-1.0
      - CDDL-1.1
      - CPL-1.0
      - EPL-1.0
      - IPL-1.0
      - MPL-1.0
      - MPL-1.1
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-10 13:10
    - 3.7K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Protocol.kt

       *
       * [rfc_7230]: https://tools.ietf.org/html/rfc7230
       */
      HTTP_1_1("http/1.1"),
    
      /**
       * Chromium's binary-framed protocol that includes header compression, multiplexing multiple
       * requests on the same socket, and server-push. HTTP/1.1 semantics are layered on SPDY/3.
       *
       * Current versions of OkHttp do not support this protocol.
       */
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 4.4K bytes
    - Viewed (0)
Back to top