Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 398 for France (0.03 sec)

  1. cmd/data-scanner.go

    	dataScannerCompactLeastObject    = 500                              // Compact when there is less than this many objects in a branch.
    	dataScannerCompactAtChildren     = 10000                            // Compact when there are this many children in a branch.
    	dataScannerCompactAtFolders      = dataScannerCompactAtChildren / 4 // Compact when this many subfolders in a single folder.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.5K bytes
    - Viewed (0)
  2. internal/ringbuffer/README.md

    A circular buffer (ring buffer) in Go, implemented io.ReaderWriter interface
    
    [![wikipedia](Circular_Buffer_Animation.gif)](https://github.com/smallnest/ringbuffer)
    
    # Usage
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. .ci/java-versions-aarch64.properties

    # This file is used with all of the non-matrix tests in Jenkins.
    
    # This .properties file defines the versions of Java with which to
    # build and test Elasticsearch for this branch. Valid Java versions
    # are 'java' or 'openjdk' followed by the major release number.
    
    ES_BUILD_JAVA=jdk16
    Registered: Sun Dec 21 06:47:06 UTC 2025
    - Last Modified: Tue Jun 08 18:35:17 UTC 2021
    - 308 bytes
    - Viewed (0)
  4. .github/workflows/build-docs.yml

        outputs:
          docs: ${{ steps.filter.outputs.docs }}
        steps:
        - uses: actions/checkout@v6
        # For pull requests it's not necessary to checkout the code but for the main branch it is
        - uses: dorny/paths-filter@v3
          id: filter
          with:
            filters: |
              docs:
                - README.md
                - docs/**
                - docs_src/**
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  5. docs/distributed/samples/bootstrap-complete.ldif

    uid: cody3
    mail: ******@****.***
    userPassword: {SSHA}H8B0gaOd4bRklK3fXj9ltHvJXWQFXW5Q
    
    # Create groups ou for hwengg
    dn: ou=groups,ou=hwengg,dc=min,dc=io
    objectclass: organizationalUnit
    ou: groups
    description: groups branch
    
    # Create project groups
    
    dn: cn=projectx,ou=groups,ou=hwengg,dc=min,dc=io
    objectclass: groupofnames
    cn: projectx
    description: Project X group members
    member: uid=alice1,ou=people,ou=hwengg,dc=min,dc=io
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Thu Sep 12 15:59:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    1.  API changes require discussion, use cases, etc. Code comes later.
    2.  Pull requests are great for small fixes for bugs, documentation, etc.
    3.  Pull requests are not merged directly into the master branch.
    4.  Code contributions require signing a Google CLA.
    
    API changes
    -----------
    
    We make changes to Guava's public [APIs][], including adding new APIs, very
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Dec 15 18:43:50 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. scripts/sponsors.py

            ["git", "config", "user.email", "github-actions[bot]@users.noreply.github.com"],
            check=True,
        )
        branch_name = f"fastapi-people-sponsors-{secrets.token_hex(4)}"
        logging.info(f"Creating a new branch {branch_name}")
        subprocess.run(["git", "checkout", "-b", branch_name], check=True)
        logging.info("Adding updated file")
        subprocess.run(
            [
                "git",
                "add",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  8. .github/workflows/latest-changes.yml

          # Ref: https://github.com/actions/checkout/issues/2313
          - uses: actions/checkout@v5
            with:
              # To allow latest-changes to commit to the main branch
              token: ${{ secrets.FASTAPI_LATEST_CHANGES }}
          # Allow debugging with tmate
          - name: Setup tmate session
            uses: mxschmitt/action-tmate@v3
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 24 14:58:32 UTC 2025
    - 1.4K bytes
    - Viewed (1)
  9. docs/pt/docs/_llm-test.md

    # Arquivo de teste de LLM { #llm-test-file }
    
    Este documento testa se o <abbr title="Large Language Model – Modelo de Linguagem de Grande Porte">LLM</abbr>, que traduz a documentação, entende o `general_prompt` em `scripts/translate.py` e o prompt específico do idioma em `docs/{language code}/llm-prompt.md`. O prompt específico do idioma é anexado ao `general_prompt`.
    
    Os testes adicionados aqui serão vistos por todos os autores dos prompts específicos de idioma.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:17:03 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  10. scripts/contributors.py

            ["git", "config", "user.email", "github-actions[bot]@users.noreply.github.com"],
            check=True,
        )
        branch_name = f"fastapi-people-contributors-{secrets.token_hex(4)}"
        logging.info(f"Creating a new branch {branch_name}")
        subprocess.run(["git", "checkout", "-b", branch_name], check=True)
        logging.info("Adding updated file")
        subprocess.run(
            [
                "git",
                "add",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 8.6K bytes
    - Viewed (0)
Back to top