Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 711 - 720 of 1,358 for Html (0.06 seconds)

  1. docs/ru/docs/tutorial/server-sent-events.md

    - Отправлять комментарий «ping» для поддержания соединения («keep alive») каждые 15 секунд, когда нет сообщений, чтобы предотвратить закрытие соединения некоторыми прокси, как рекомендовано в [HTML specification: Server-Sent Events](https://html.spec.whatwg.org/multipage/server-sent-events.html#authoring-notes).
    - Устанавливать заголовок `Cache-Control: no-cache`, чтобы предотвратить кэширование потока.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  2. mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt

            ),
          )
        val requestLine = decodeRequestLine("GET http://example.com:8080/index.html HTTP/1.1")
        val request = RecordedRequest(requestLine, headers, emptyList(), 0, ByteString.EMPTY, 0, 0, socket)
        assertThat(request.target).isEqualTo("http://example.com:8080/index.html")
        assertThat(request.url.toString()).isEqualTo("http://example.com:8080/index.html")
      }
    
      @Test fun testAsteriskForm() {
        val socket =
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Aug 02 20:36:00 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  3. docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md

    /// note | Технические детали
    
    Любая функция, с которой можно корректно использовать:
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) или
    * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager)
    
    будет корректной для использования в качестве зависимости **FastAPI**.
    
    На самом деле, FastAPI использует эти два декоратора внутренне.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  4. BUILDING.md

    ## Build logic organisation
    
    The Elasticsearch project contains 3 build-related projects that are included into the Elasticsearch build as a [composite build](https://docs.gradle.org/current/userguide/composite_builds.html).
    
    ### `build-conventions`
    
    This project contains build conventions that are applied to all elasticsearch projects.
    
    ### `build-tools`
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 23 07:45:59 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  5. docs/es/docs/_llm-test.md

    Consulta la sección `### Links` en el prompt general en `scripts/translate.py`.
    
    ////
    
    ## Elementos HTML "abbr" { #html-abbr-elements }
    
    //// tab | Prueba
    
    Aquí algunas cosas envueltas en elementos HTML "abbr" (algunas son inventadas):
    
    ### El abbr da una frase completa { #the-abbr-gives-a-full-phrase }
    
    * <abbr title="Getting Things Done - Hacer las cosas">GTD</abbr>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 12.2K bytes
    - Click Count (0)
  6. docs/fr/docs/_llm-test.md

    Voir la section `### Links` dans l’invite générale dans `scripts/translate.py`.
    
    ////
    
    ## Éléments HTML « abbr » { #html-abbr-elements }
    
    //// tab | Test
    
    Voici quelques éléments entourés d’un élément HTML « abbr » (certains sont inventés) :
    
    ### L’abbr fournit une expression complète { #the-abbr-gives-a-full-phrase }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ElementWarningsRenderer.java

                Element link = document.createElement("ulink");
                para.appendChild(link);
                link.setAttribute("url", "../userguide/feature_lifecycle.html");
                link.appendChild(document.createTextNode("deprecated"));
                para.appendChild(document.createTextNode(" and will be removed in the next major version of Gradle."));
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.8K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Execute.java

    import java.lang.annotation.Target;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Used if your Mojo needs to fork a <a href="/ref/3.0.4/maven-core/lifecycles.html">lifecycle</a>.
     *
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface Execute {
        /**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java

                public static final String JCIFS_PREFIX = "jcifs.";
                public static final String HTML_CANONICAL_XPATH = "html.canonical.xpath";
                public static final String HTML_PRUNED_TAGS = "html.pruned.tags";
                public static final String PIPELINE = "pipeline";
                public static final String IGNORE_ROBOTS_TAGS = "ignore.robots.tags";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md

    ///
    
    /// note | Detalhes Técnicos
    
    Qualquer função que possa ser utilizada com:
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) ou
    * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager)
    
    pode ser utilizada como uma dependência do **FastAPI**.
    
    Na realidade, o FastAPI utiliza esses dois decoradores internamente.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 13.8K bytes
    - Click Count (0)
Back to Top