Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 489 for html_2 (0.04 sec)

  1. docs/en/overrides/main.html

    {% extends "base.html" %}
    
    {% block announce %}
    <div class="announce-wrapper">
      <div id="announce-left">
        <div class="item">
          <a class="announce-link" href="https://fastapicloud.com" target="_blank">
            <span class="twemoji">
              {% include ".icons/material/cloud-arrow-up.svg" %}
            </span> Join the <strong>FastAPI Cloud</strong> waiting list ๐Ÿš€
          </a>
        </div>
        <div class="item">
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Dec 01 20:06:57 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. doc/asm.html

    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
    If you plan to write assembly language, you should read that document although much of it is Plan 9-specific.
    The current document provides a summary of the syntax and the differences with
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Nov 14 19:09:46 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  3. doc/go_spec.html

    Robert Griesemer <******@****.***> 1764714733 -0800
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Dec 02 23:07:19 UTC 2025
    - 286.5K bytes
    - Viewed (1)
  4. docs/ko/docs/advanced/templates.md

    {!../../docs_src/templates/templates/item.html!}
    ```
    
    ### ํ…œํ”Œ๋ฆฟ ์ปจํ…์ŠคํŠธ ๊ฐ’
    
    ๋‹ค์Œ๊ณผ ๊ฐ™์€ HTML์—์„œ:
    
    {% raw %}
    
    ```jinja
    Item ID: {{ id }}
    ```
    
    {% endraw %}
    
    ...์ด๋Š” ์ „๋‹ฌํ•œ "์ปจํ…์ŠคํŠธ" `dict`์—์„œ ๊ฐ€์ ธ์˜จ `id`๋ฅผ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค:
    
    ```Python
    {"id": id}
    ```
    
    ์˜ˆ๋ฅผ ๋“ค์–ด, ID๊ฐ€ `42`์ผ ๊ฒฝ์šฐ, ์ด๋Š” ๋‹ค์Œ๊ณผ ๊ฐ™์ด ๋ Œ๋”๋ง๋ฉ๋‹ˆ๋‹ค:
    
    ```html
    Item ID: 42
    ```
    
    ### ํ…œํ”Œ๋ฆฟ `url_for` ์ธ์ˆ˜
    
    ํ…œํ”Œ๋ฆฟ ๋‚ด์—์„œ `url_for()`๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜๋„ ์žˆ์œผ๋ฉฐ, ์ด๋Š” *๊ฒฝ๋กœ ์ž‘์—… ํ•จ์ˆ˜*์—์„œ ์‚ฌ์šฉ๋  ์ธ์ˆ˜์™€ ๋™์ผํ•œ ์ธ์ˆ˜๋ฅผ ๋ฐ›์Šต๋‹ˆ๋‹ค.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/SocketChannelTest.kt

                sslSocketFactory(
                  sslSocketFactory,
                  handshakeCertificates.trustManager,
                )
    
                when (socketMode.protocol) {
                  HTTP_2 -> protocols(listOf(HTTP_2, HTTP_1_1))
                  HTTP_1_1 -> protocols(listOf(HTTP_1_1))
                  else -> TODO()
                }
    
                val serverSslSocketFactory =
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  6. scripts/test-cov-html.sh

    Sebastiรกn Ramรญrez <******@****.***> 1759914201 +0900
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Oct 08 09:03:21 UTC 2025
    - 87 bytes
    - Viewed (0)
  7. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

                    }
                  },
                ),
              ).build()
    
          val response = client.newCall(request).execute()
    
          response.use {
            assertEquals(Protocol.HTTP_2, response.protocol)
            assertEquals(200, response.code)
            // see https://github.com/google/conscrypt/blob/b9463b2f74df42d85c73715a5f19e005dfb7b802/android/src/main/java/org/conscrypt/Platform.java#L613
            when {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue Nov 04 19:13:52 UTC 2025
    - 29.9K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.setDescription("Generates HTML single-page user manual.");
                configureForUserGuideSinglePage(task, extension, project);
                task.outputOptions(options -> options.setBackends(singletonList("html5")));
                // TODO: This breaks the provider
                task.setOutputDir(extension.getUserManual().getStagingRoot().dir("render-single-html").get().getAsFile());
            });
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 04 14:26:28 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/TrailersTest.kt

          .cache(Cache(fileSystem, "/cache/".toPath(), Long.MAX_VALUE))
          .build()
    
      @Test
      fun trailersHttp1() {
        trailers(Protocol.HTTP_1_1)
      }
    
      @Test
      fun trailersHttp2() {
        trailers(Protocol.HTTP_2)
      }
    
      private fun trailers(protocol: Protocol) {
        enableProtocol(protocol)
    
        server.enqueue(
          MockResponse
            .Builder()
            .addHeader("h1", "v1")
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 08 21:45:04 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/MediaType.java

     * parameter attributes or parameter values must be valid according to RFCs <a
     * href="https://tools.ietf.org/html/rfc2045">2045</a> and <a
     * href="https://tools.ietf.org/html/rfc2046">2046</a>.
     *
     * <p>All portions of the media type that are case-insensitive (type, subtype, parameter attributes)
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Oct 02 01:46:40 UTC 2025
    - 48K bytes
    - Viewed (0)
Back to top