Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 371 for HtML (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://twitter.com/fastapi" target="_blank">
            <span class="twemoji twitter">
              {% include ".icons/fontawesome/brands/twitter.svg" %}
            </span> Follow <strong>@fastapi</strong> on <strong>Twitter</strong> to stay updated
          </a>
        </div>
        <div class="item">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 09:13:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. scripts/test-cov-html.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    bash scripts/test.sh ${@}
    coverage combine
    coverage report
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Aug 18 21:07:03 UTC 2024
    - 109 bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/site/apt/index.apt

       ** profile injection: <<<ProfileInjector>>> ({{{./apidocs/org/apache/maven/model/profile/ProfileInjector.html}javadoc}}),
       with its <<<DefaultProfileInjector>>> implementation
       ({{{./xref/org/apache/maven/model/profile/DefaultProfileInjector.html}source}})
    
       ** parent resolution until {{{./super-pom.html}super-pom}}
    
       ** inheritance assembly (see {{{./index.html#Inheritance_Assembly}below}})
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/site/apt/logging.apt

     / {{{https://codehaus-plexus.github.io/plexus-containers/plexus-container-default/apidocs/org/codehaus/plexus/logging/Logger.html}Logger}}.
    
     Starting with Maven 3.1.0:
    
      *  Maven supports SLF4J API logging API too, ie {{{http://slf4j.org/apidocs/org/slf4j/LoggerFactory.html}LoggerFactory}} /
         {{{http://slf4j.org/apidocs/org/slf4j/Logger.html}Logger}},
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            String data = "<html><body>aaa<style>bbb</style>ccc</body></html>";
            Document document = getDocument(data);
            String value = transformer.getSingleNodeValue(document, "//BODY", node -> node);
            assertEquals("aaa bbb ccc", value);
    
            data = "<html><body> aaa <p> bbb <b>ccc</b> </p> </body></html>";
            document = getDocument(data);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                if (this.showWeekNumbers || this.showISOWeekNumbers)
                    html += '<th class="week">' + this.locale.weekLabel + '</th>';
    
                $.each(this.locale.daysOfWeek, function(index, dayOfWeek) {
                    html += '<th>' + dayOfWeek + '</th>';
                });
    
                html += '</tr>';
                html += '</thead>';
                html += '<tbody>';
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. compat/maven-plugin-api/src/site/site.xml

          <item name="Introduction" href="index.html"/>
          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
          <!--item name="FAQ" href="faq.html"/-->
        </menu>
        <menu name="Reference">
          <item name="META-INF/maven/lifecycle.xml" href="lifecycle-mappings.html"/>
          <item name="META-INF/maven/plugin.xml" href="plugin.html"/>
        </menu>
      </body>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/templates.md

    ///
    
    ## Templates erstellen
    
    Dann können Sie unter `templates/item.html` ein Template erstellen, mit z. B. folgendem Inhalt:
    
    ```jinja hl_lines="7"
    {!../../docs_src/templates/templates/item.html!}
    ```
    
    ### Template-Kontextwerte
    
    Im HTML, welches enthält:
    
    {% raw %}
    
    ```jinja
    Item ID: {{ id }}
    ```
    
    {% endraw %}
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. docs/pt/docs/advanced/templates.md

    ///
    
    ## Escrevendo Templates
    
    Então você pode escrever um template em `templates/item.html`, por exemplo:
    
    ```jinja hl_lines="7"
    {!../../docs_src/templates/templates/item.html!}
    ```
    
    ### Interpolação de Valores no Template
    
    No código HTML que contém:
    
    {% raw %}
    
    ```jinja
    Item ID: {{ id }}
    ```
    
    {% endraw %}
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.3K 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Sep 26 19:15:09 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top