Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for CDN (0.08 seconds)

  1. fastapi/openapi/docs.py

                """
                The URL to use to load the Swagger UI JavaScript.
    
                It is normally set to a CDN URL.
    
                Read more about it in the
                [FastAPI docs for Custom Docs UI Static Assets](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/)
                """
            ),
        ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js",
        swagger_css_url: Annotated[
            str,
            Doc(
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 24 09:28:10 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/net/HttpHeaders.java

      public static final String ALLOW = "Allow";
    
      /**
       * The HTTP <a href="https://datatracker.ietf.org/doc/rfc9213/">{@code CDN-Cache-Control}</a>
       * header field name.
       *
       * @since NEXT
       */
      public static final String CDN_CACHE_CONTROL = "CDN-Cache-Control";
    
      /** The HTTP {@code Content-Disposition} header field name. */
      public static final String CONTENT_DISPOSITION = "Content-Disposition";
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Feb 24 14:36:23 GMT 2026
    - 35.6K bytes
    - Click Count (0)
  3. scripts/general-llm-prompt.md

    ```
    
    Examples:
    
    Source (English):
    
    ```
    <abbr title="Input/Output: disk reading or writing, network communication.">I/O</abbr>
    <abbr title="Content Delivery Network: service, that provides static files.">CDN</abbr>
    <abbr title="Integrated Development Environment: similar to a code editor">IDE</abbr>
    ```
    
    Result (German):
    
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Mar 18 10:55:36 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt

          tag: T?,
        ) = tag(type.kotlin, tag)
    
        /**
         * Override the [Request.url] for caching, if it is either polluted with
         * transient query params, or has a canonical URL possibly for a CDN.
         *
         * Note that POST requests will not be sent to the server if this URL is set
         * and matches a cached response.
         */
        fun cacheUrlOverride(cacheUrlOverride: HttpUrl?) =
          apply {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Oct 30 13:46:58 GMT 2025
    - 14.7K bytes
    - Click Count (1)
  5. docs/ru/docs/how-to/custom-docs-ui-assets.md

    Но это можно настроить: вы можете указать конкретный CDN или отдавать файлы самостоятельно.
    
    ## Пользовательский CDN для JavaScript и CSS { #custom-cdn-for-javascript-and-css }
    
    Допустим, вы хотите использовать другой <abbr title="Content Delivery Network – Сеть доставки контента">CDN</abbr>, например `https://unpkg.com/`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  6. docs/uk/docs/how-to/custom-docs-ui-assets.md

    Але це можна налаштувати: ви можете вказати конкретний CDN або віддавати файли самостійно.
    
    ## Власний CDN для JavaScript і CSS { #custom-cdn-for-javascript-and-css }
    
    Припустімо, що ви хочете використовувати інший <abbr title="Content Delivery Network - Мережа доставки контенту">CDN</abbr>, наприклад `https://unpkg.com/`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/curl/CurlTest.java

            assertNotNull(Curl.put("ftp://files.example.com/upload"));
            assertNotNull(Curl.delete("http://localhost:8080/delete"));
            assertNotNull(Curl.head("https://cdn.example.com/assets/file.js"));
            assertNotNull(Curl.options("http://cors.example.com/api"));
            assertNotNull(Curl.connect("http://proxy.example.com:3128"));
        }
    
        @Test
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Thu Nov 20 13:34:13 GMT 2025
    - 16.3K bytes
    - Click Count (0)
  8. ci/devinfra/docker/windows2022/Dockerfile

    # Install JDK 21.
    RUN \
      Add-Type -AssemblyName \"System.IO.Compression.FileSystem\"; \
      $zulu_pkg = \"zulu21.34.19-ca-jdk21.0.3-win_x64.zip\"; \
      $zulu_url = \"https://cdn.azul.com/zulu/bin/${zulu_pkg}\"; \
      $zulu_zip = \"c:\\temp\\${zulu_pkg}\"; \
      $zulu_extracted_path = \"c:\\temp\\\" + [IO.Path]::GetFileNameWithoutExtension($zulu_zip); \
      $zulu_root = \"c:\\openjdk\"; \
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Mar 04 19:50:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
Back to Top