Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for universe (0.05 sec)

  1. docs/fr/llm-prompt.md

    Examples:
    
        Source (English):
    
            «««
            "Hello world"
            “Hello Universe”
            "He said: 'Hello'"
            "The module is `__main__`"
            »»»
    
        Result (French):
    
            «««
            «Hello world»
            «Hello Universe»
            «He said: 'Hello'»
            «The module is `__main__`»
            »»»
    
    ### Ellipsis
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:41:43 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. docs/en/docs/_llm-test.md

    ... However, quotes inside code snippets must stay as is.
    
    ////
    
    ## code blocks { #code-blocks }
    
    //// tab | Test
    
    A Bash code example...
    
    ```bash
    # Print a greeting to the universe
    echo "Hello universe"
    ```
    
    ...and a console code example...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 14:48:47 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. docs/de/llm-prompt.md

    Examples:
    
        Source (English):
    
            «««
            "Hello world"
            “Hello Universe”
            "He said: 'Hello'"
            “my name is ‘Nils’”
            `"__main__"`
            `"items"`
            »»»
    
        Result (German):
    
            «««
            „Hallo Welt“
            „Hallo Universum“
            „Er sagte: ‚Hallo‘“
            „Mein Name ist ‚Nils‘“
            `"__main__"`
            `"items"`
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 09:39:53 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  4. docs/de/docs/_llm-test.md

    ////
    
    ## Codeblöcke { #code-blocks }
    
    //// tab | Test
    
    Ein Bash-Codebeispiel ...
    
    ```bash
    # Eine Begrüßung an das Universum ausgeben
    echo "Hello universe"
    ```
    
    ... und ein Konsolen-Codebeispiel ...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    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/ru/docs/_llm-test.md

    ... Однако кавычки внутри фрагментов кода должны оставаться как есть.
    
    ////
    
    ## Блоки кода { #code-blocks }
    
    //// tab | Тест
    
    Пример кода Bash...
    
    ```bash
    # Вывести приветствие вселенной
    echo "Hello universe"
    ```
    
    ...и пример вывода в консоли...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  6. docs/pt/docs/_llm-test.md

    ////
    
    ## Blocos de código { #code-blocks }
    
    //// tab | Teste
    
    Um exemplo de código Bash...
    
    ```bash
    # Imprimir uma saudação ao universo
    echo "Hello universe"
    ```
    
    ...e um exemplo de código de console...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:17:03 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  7. docs/es/docs/_llm-test.md

    ////
    
    ## bloques de código { #code-blocks }
    
    //// tab | Prueba
    
    Un ejemplo de código Bash...
    
    ```bash
    # Imprime un saludo al universo
    echo "Hello universe"
    ```
    
    ...y un ejemplo de código de consola...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:16:35 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/HashBiMap.java

          return oldValue;
        }
      }
    
      @LazyInit @RetainedWith private transient @Nullable BiMap<V, K> inverse;
    
      @Override
      public BiMap<V, K> inverse() {
        BiMap<V, K> result = inverse;
        return (result == null) ? inverse = new Inverse<>(this) : result;
      }
    
      private static final class Inverse<K extends @Nullable Object, V extends @Nullable Object>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 16 14:46:34 UTC 2025
    - 37.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/MapsTest.java

        /* No aliasing on inverse operations. */
        assertSame(unmod.inverse(), unmod.inverse());
        assertSame(unmod, unmod.inverse().inverse());
    
        /* Unmodifiable is a view. */
        mod.put(4, "four");
        assertEquals(true, unmod.get(4).equals("four"));
        assertEquals(true, unmod.inverse().get("four").equals(4));
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 62.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/MapsTest.java

        /* No aliasing on inverse operations. */
        assertSame(unmod.inverse(), unmod.inverse());
        assertSame(unmod, unmod.inverse().inverse());
    
        /* Unmodifiable is a view. */
        mod.put(4, "four");
        assertEquals(true, unmod.get(4).equals("four"));
        assertEquals(true, unmod.inverse().get("four").equals(4));
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 65K bytes
    - Viewed (0)
Back to top