Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 727 for html_2 (0.14 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. doc/go_mem.html

    Derek Parker <******@****.***> 1754332385 -0700
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Aug 05 15:41:37 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. 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)
  6. mockwebserver/src/test/java/mockwebserver3/internal/http2/Http2Server.kt

          }
        }
      }
    
      private fun contentType(file: File): String =
        when {
          file.name.endsWith(".css") -> "text/css"
          file.name.endsWith(".gif") -> "image/gif"
          file.name.endsWith(".html") -> "text/html"
          file.name.endsWith(".jpeg") -> "image/jpeg"
          file.name.endsWith(".jpg") -> "image/jpeg"
          file.name.endsWith(".js") -> "application/javascript"
          file.name.endsWith(".png") -> "image/png"
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top