Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,473 for LANGUAGE (0.05 seconds)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Language.java

    @SuppressWarnings("checkstyle:InterfaceIsType")
    public interface Language extends ExtensibleEnum {
    
        /**
         * The "none" language. It is not versioned, family is same to itself, and compatible with itself only.
         * In turn, every {@link Language} implementation must be compatible with {@code NONE} language.
         */
        Language NONE = language("none");
    
        /**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Feb 07 15:09:52 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  2. doc/next/2-language.md

    ## Changes to the language {#language}...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Jan 21 20:27:12 GMT 2026
    - 41 bytes
    - Click Count (0)
  3. scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md

    {
        // This is a sample JSON code block
        "greeting": "Hello, world!" // Greeting
    }
    ```
    
    
    ### Code blocks with comments where language uses different comment styles { #code-blocks-with-different-comment-styles }
    
    The following code blocks include comments in different styles based on the language.
    Fixer tool will not preserve comments in these blocks.
    
    ```json
    {
        # This is a sample JSON code block
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 08:08:04 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  4. .github/workflows/translate.yml

          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(uv run ./scripts/translate.py llm-translatable-json)" >> $GITHUB_OUTPUT
              echo "commands=$(uv run ./scripts/translate.py commands-json)" >> $GITHUB_OUTPUT
            env:
              LANGUAGE: ${{ github.event.inputs.language }}
              COMMAND: ${{ github.event.inputs.command }}
    
      translate:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Mar 18 15:36:56 GMT 2026
    - 4K bytes
    - Click Count (0)
  5. pyproject.toml

        "Framework :: Pydantic :: 2",
        "Intended Audience :: Developers",
        "Programming Language :: Python :: 3 :: Only",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Programming Language :: Python :: 3.14",
        "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
        "Topic :: Internet :: WWW/HTTP",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 12:36:49 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  6. scripts/translate.py

    
    @app.command()
    def update_and_add(
        language: Annotated[str, typer.Option(envvar="LANGUAGE")],
        max: Annotated[int, typer.Option(envvar="MAX")] = 10,
    ) -> None:
        print(f"Updating outdated translations for {language}")
        update_outdated(language=language, max=max)
        print(f"Adding missing translations for {language}")
        add_missing(language=language, max=max)
        print(f"Done updating and adding for {language}")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  7. docs/en/docs/contributing.md

    #### LLM Prompt per Language
    
    Each language has a directory: [https://github.com/fastapi/fastapi/tree/master/docs](https://github.com/fastapi/fastapi/tree/master/docs), in it you can see a file `llm-prompt.md` with the prompt specific for that language.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  8. .teamcity/test-buckets.json

              "java-platform",
              "javadoc",
              "jvm-services",
              "kotlin-dsl",
              "kotlin-dsl-integ-tests",
              "language-groovy",
              "language-java",
              "language-jvm",
              "language-native",
              "launcher",
              "logging",
              "maven",
              "messaging",
              "model-core",
              "model-groovy",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 18:38:15 GMT 2026
    - 118.6K bytes
    - Click Count (0)
  9. docs/pt/llm-prompt.md

    ### Target language
    
    Translate to Portuguese (Português).
    
    Language code: pt.
    
    For instructions or titles in imperative, keep them in imperative, for example "Import FastAPI" to "Importe o FastAPI".
    
    Keep existing translations as they are if the term is already translated.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Jan 16 12:27:02 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  10. .pre-commit-config.yaml

            require_serial: true
            language: unsupported
            pass_filenames: false
    
          - id: local-ty
            name: ty check
            entry: uv run ty check fastapi
            require_serial: true
            language: unsupported
            pass_filenames: false
    
          - id: add-permalinks-pages
            language: unsupported
            name: add-permalinks-pages
            entry: uv run ./scripts/docs.py add-permalinks-pages
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:06:36 GMT 2026
    - 2.6K bytes
    - Click Count (1)
Back to Top