Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Explanation (0.04 sec)

  1. docs/en/docs/_llm-test.md

    * <abbr title="less than"><code>lt</code></abbr>
    * <abbr title="XML Web Token">XWT</abbr>
    * <abbr title="Parallel Server Gateway Interface">PSGI</abbr>
    
    ### The abbr gives an explanation { #the-abbr-gives-an-explanation }
    
    * <abbr title="A group of machines that are configured to be connected and work together in some way.">cluster</abbr>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 14:48:47 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. docs/es/docs/_llm-test.md

    * <abbr title="XML Web Token – Token web XML">XWT</abbr>
    * <abbr title="Parallel Server Gateway Interface – Interfaz de pasarela de servidor paralela">PSGI</abbr>
    
    ### El abbr da una explicación { #the-abbr-gives-an-explanation }
    
    * <abbr title="Un grupo de máquinas configuradas para estar conectadas y trabajar juntas de alguna manera.">clúster</abbr>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:16:35 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. docs/ru/docs/_llm-test.md

    * <abbr title="XML Web Token – XML веб‑токен">XWT</abbr>
    * <abbr title="Parallel Server Gateway Interface – Параллельный серверный интерфейс шлюза">PSGI</abbr>
    
    ### abbr даёт объяснение { #the-abbr-gives-an-explanation }
    
    * <abbr title="Группа машин, которые настроены на соединение и совместную работу определённым образом.">кластер</abbr>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  4. docs/de/docs/_llm-test.md

    * <abbr title="less than – kleiner als"><code>lt</code></abbr>
    * <abbr title="XML Web Token">XWT</abbr>
    * <abbr title="Paralleles Server-Gateway-Interface">PSGI</abbr>
    
    ### Das abbr gibt eine Erklärung { #the-abbr-gives-an-explanation }
    
    * <abbr title="Eine Gruppe von Maschinen, die so konfiguriert sind, dass sie verbunden sind und in irgendeiner Weise zusammenarbeiten.">Cluster</abbr>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 07:17:04 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. docs/pt/docs/_llm-test.md

    * <abbr title="XML Web Token – Token Web XML">XWT</abbr>
    * <abbr title="Parallel Server Gateway Interface – Interface de Gateway de Servidor Paralelo">PSGI</abbr>
    
    ### O abbr fornece uma explicação { #the-abbr-gives-an-explanation }
    
    * <abbr title="Um grupo de máquinas configuradas para estarem conectadas e trabalharem juntas de alguma forma.">cluster</abbr>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:17:03 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  6. docs/de/llm-prompt.md

    preferred German translations, separated by a colon («:»). Use these translations, do not use your own. If an existing translation does not use these terms, update it to use them. In the below list, a term or a translation may be followed by an explanation in brackets, which explains when to translate the term this way. If a translation is preceded by «NOT», then that means: do NOT use this translation for this term. English nouns, starting with the word «the», have the German genus – «der», «die»,...
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 09:39:53 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

         *   <thead>
         *     <tr>
         *       <th>Configuration ({@code targetPath()})</th>
         *       <th>Output Directory</th>
         *       <th>Result ({@code targetPath(project)})</th>
         *       <th>Explanation</th>
         *     </tr>
         *   </thead>
         *   <tbody>
         *     <tr>
         *       <td>{@code Optional.empty()}</td>
         *       <td>{@code /home/user/myproject/target/classes}</td>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/CacheBuilder.java

     * <i>not</i> include cache contents, but only configuration.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/CachesExplained">caching</a> for a higher-level
     * explanation.
     *
     * @param <K> the most general key type this builder will be able to create caches for. This is
     *     normally {@code Object} unless it is constrained by using a method like {@link
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 51.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/LongMath.java

      // Whenever both tests are cheap and functional, it's faster to use &, | instead of &&, ||
      @SuppressWarnings("ShortCircuitBoolean")
      public static long saturatedMultiply(long a, long b) {
        // see checkedMultiply for explanation
        int leadingZeros =
            Long.numberOfLeadingZeros(a)
                + Long.numberOfLeadingZeros(~a)
                + Long.numberOfLeadingZeros(b)
                + Long.numberOfLeadingZeros(~b);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 03 21:01:09 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheBuilder.java

     * <i>not</i> include cache contents, but only configuration.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/CachesExplained">caching</a> for a higher-level
     * explanation.
     *
     * @param <K> the most general key type this builder will be able to create caches for. This is
     *     normally {@code Object} unless it is constrained by using a method like {@link
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 51.6K bytes
    - Viewed (0)
Back to top