Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 156 for pontos (0.04 seconds)

  1. doc/initial/7-ports.md

    ## Ports {#ports}...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Jan 22 18:07:49 GMT 2024
    - 19 bytes
    - Click Count (0)
  2. doc/next/7-ports.md

    ## Ports {#ports}
    
    ### Darwin {#darwin}
    
    <!-- go.dev/issue/75836 -->
    As [announced](go1.26#darwin) in the Go 1.26 release notes,
    Go 1.27 requires macOS 13 Ventura or later;
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Jan 26 21:07:04 GMT 2026
    - 226 bytes
    - Click Count (0)
  3. Vagrantfile

          deb_common config, box
          deb_docker config
        end
      end
      'centos-6'.tap do |box|
        config.vm.define box, define_opts do |config|
          config.vm.box = 'elastic/centos-6-x86_64'
          rpm_common config, box
        end
      end
      'centos-7'.tap do |box|
        config.vm.define box, define_opts do |config|
          config.vm.box = 'elastic/centos-7-x86_64'
          rpm_common config, box
          rpm_docker config
        end
      end
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
  4. docs/pt/docs/project-generation.md

        - 🎨 [Tailwind CSS](https://tailwindcss.com) e [shadcn/ui](https://ui.shadcn.com) para os componentes de frontend.
        - 🤖 Um cliente frontend automaticamente gerado.
        - 🧪 [Playwright](https://playwright.dev) para testes Ponta-a-Ponta.
        - 🦇 Suporte para modo escuro.
    - 🐋 [Docker Compose](https://www.docker.com) para desenvolvimento e produção.
    - 🔒 Hash seguro de senhas por padrão.
    - 🔑 Autenticação JWT (JSON Web Token).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  5. internal/config/heal/heal.go

    			return 0, nil
    		case false:
    			return -1, nil
    		}
    	}
    
    	// Try to parse as a number of months
    	if !strings.HasSuffix(s, "m") {
    		return -1, errors.New("unknown format")
    	}
    
    	months, err := strconv.Atoi(strings.TrimSuffix(s, "m"))
    	if err != nil {
    		return -1, err
    	}
    
    	if months < minimumBitrotCycleInMonths {
    		return -1, fmt.Errorf("minimum bitrot cycle is %d month(s)", minimumBitrotCycleInMonths)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Nov 04 19:06:02 GMT 2024
    - 4.9K bytes
    - Click Count (0)
  6. .ci/jobs.t/elastic+elasticsearch+multijob+packaging-tests-unix.yml

        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - centos-7-packaging
                - centos-8-packaging
                - debian-9-packaging
                - debian-10-packaging
                - debian-11-packaging
                - opensuse-15-1-packaging
                - oraclelinux-7-packaging
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  7. docs/pt/docs/editor-support.md

    Por padrão, a extensão descobre automaticamente aplicações FastAPI no seu workspace procurando por arquivos que instanciam `FastAPI()`. Se a detecção automática não funcionar para a estrutura do seu projeto, você pode especificar um ponto de entrada via `[tool.fastapi]` em `pyproject.toml` ou pela configuração `fastapi.entryPoint` do VS Code usando notação de módulo (por exemplo, `myapp.main:app`).
    
    ## Funcionalidades { #features }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  8. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-unix.yml

              black-list-labels:
                - '>test-mute'
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - centos-7-packaging
                - centos-8-packaging
                - debian-9-packaging
                - debian-10-packaging
                - debian-11-packaging
                - opensuse-15-1-packaging
                - oraclelinux-7-packaging
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 2.2K bytes
    - Click Count (0)
  9. docs/pt/docs/advanced/path-operation-advanced-configuration.md

    Adicionar um `\f` (um caractere de escape para "form feed") faz com que o **FastAPI** trunque a saída usada para o OpenAPI até esse ponto.
    
    Ele não será mostrado na documentação, mas outras ferramentas (como o Sphinx) serão capazes de utilizar o resto.
    
    {* ../../docs_src/path_operation_advanced_configuration/tutorial004_py310.py hl[17:27] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/debugging.md

    * "Add configuration...".
    * Seleccionar "Python".
    * Ejecutar el depurador con la opción "`Python: Current File (Integrated Terminal)`".
    
    Luego, iniciará el servidor con tu código **FastAPI**, deteniéndose en tus puntos de interrupción, etc.
    
    Así es como podría verse:
    
    <img src="/img/tutorial/debugging/image01.png">
    
    ---
    
    Si usas PyCharm, puedes:
    
    * Abrir el menú "Run".
    * Seleccionar la opción "Debug...".
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 2.6K bytes
    - Click Count (0)
Back to Top