Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 168 for dira (0.72 seconds)

  1. cmd/data-usage_test.go

    		{name: "rootfile2", size: 10000},
    		{name: "dir1/d1file", size: 2000},
    		{name: "dir2/d2file", size: 300},
    		{name: "dir2/d2file2", size: 300},
    		{name: "dir2/d2file3/", size: 300},
    		{name: "dir2/d2file4/", size: 300},
    		{name: "dir2/d2file5", size: 300},
    		{name: "dir1/dira/dafile", size: 100000},
    		{name: "dir1/dira/dbfile", size: 200000},
    		{name: "dir1/dira/dirasub/dcfile", size: 1000000},
    Created: 2026-04-05 19:28
    - Last Modified: 2025-09-28 20:59
    - 14.7K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/fess/eu/stopwords.txt

    al
    anitz
    arabera
    asko
    baina
    bat
    batean
    batek
    bati
    batzuei
    batzuek
    batzuetan
    batzuk
    bera
    beraiek
    berau
    berauek
    bere
    berori
    beroriek
    beste
    bezala
    da
    dago
    dira
    ditu
    du
    dute
    edo
    egin
    ere
    eta
    eurak
    ez
    gainera
    gu
    gutxi
    guzti
    haiei
    haiek
    haietan
    hainbeste
    hala
    han
    handik
    hango
    hara
    hari
    hark
    hartan
    hau
    Created: 2026-03-31 13:07
    - Last Modified: 2018-07-19 06:31
    - 709 bytes
    - Click Count (0)
  3. docs/pt/docs/fastapi-cli.md

    Você pode configurar onde sua aplicação está localizada em um arquivo `pyproject.toml`, assim:
    
    ```toml
    [tool.fastapi]
    entrypoint = "main:app"
    ```
    
    Esse `entrypoint` dirá ao comando `fastapi` que ele deve importar a aplicação assim:
    
    ```python
    from main import app
    ```
    
    Se o seu código estivesse estruturado assim:
    
    ```
    .
    ├── backend
    │   ├── main.py
    │   ├── __init__.py
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:20
    - 6.3K bytes
    - Click Count (0)
  4. docs/es/docs/advanced/security/http-basic-auth.md

    Pero luego los atacantes prueban con el nombre de usuario `stanleyjobsox` y contraseña `love123`.
    
    Y el código de tu aplicación hace algo así como:
    
    ```Python
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:15
    - 5.3K bytes
    - Click Count (0)
  5. docs/pt/docs/advanced/security/http-basic-auth.md

    Então os invasores vão tentar com o usuário `stanleyjobsox` e a senha `love123`.
    
    E a sua aplicação faz algo como:
    
    ```Python
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:20
    - 5.2K bytes
    - Click Count (0)
  6. docs/es/docs/fastapi-cli.md

    Puedes configurar dónde está tu app en un archivo `pyproject.toml` así:
    
    ```toml
    [tool.fastapi]
    entrypoint = "main:app"
    ```
    
    Ese `entrypoint` le dirá al comando `fastapi` que debe importar la app así:
    
    ```python
    from main import app
    ```
    
    Si tu código estuviera estructurado así:
    
    ```
    .
    ├── backend
    │   ├── main.py
    │   ├── __init__.py
    ```
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:15
    - 6.1K bytes
    - Click Count (0)
  7. docs/fr/docs/advanced/security/http-basic-auth.md

    Mais ensuite, les attaquants essaient avec le nom d'utilisateur `stanleyjobsox` et le mot de passe `love123`.
    
    Et le code de votre application fait quelque chose comme :
    
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:37
    - 5.8K bytes
    - Click Count (0)
  8. docs/es/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005_py310.py hl[14] *}
    
    Ahora intenta enviar un ítem inválido como:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Recibirás un response que te dirá que los datos son inválidos conteniendo el body recibido:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
            "body",
            "size"
          ],
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:15
    - 9.6K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/first-steps.md

    Você pode configurar onde sua aplicação está localizada em um arquivo `pyproject.toml`, assim:
    
    ```toml
    [tool.fastapi]
    entrypoint = "main:app"
    ```
    
    Esse `entrypoint` dirá ao comando `fastapi` que ele deve importar a aplicação assim:
    
    ```python
    from main import app
    ```
    
    Se o seu código estiver estruturado assim:
    
    ```
    .
    ├── backend
    │   ├── main.py
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:20
    - 14.2K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/first-steps.md

    Puedes configurar dónde está tu app en un archivo `pyproject.toml` así:
    
    ```toml
    [tool.fastapi]
    entrypoint = "main:app"
    ```
    
    Ese `entrypoint` le dirá al comando `fastapi` que debe hacer el import de la app así:
    
    ```python
    from main import app
    ```
    
    Si tu código estuviera estructurado así:
    
    ```
    .
    ├── backend
    │   ├── main.py
    Created: 2026-04-05 07:19
    - Last Modified: 2026-03-19 18:15
    - 13.9K bytes
    - Click Count (0)
Back to Top