Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for numa (0.18 sec)

  1. src/main/resources/fess_indices/fess/pt/stopwords.txt

    o
    que
    e
    do
    da
    em
    um
    para
    com
    não
    uma
    os
    no
    se
    na
    por
    mais
    as
    dos
    como
    mas
    ao
    ele
    das
    à
    seu
    sua
    ou
    quando
    muito
    nos
    já
    eu
    também
    só
    pelo
    pela
    até
    isso
    ela
    entre
    depois
    sem
    mesmo
    aos
    seus
    quem
    nas
    me
    esse
    eles
    você
    essa
    num
    nem
    suas
    meu
    às
    minha
    numa
    pelos
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/schema-extra-example.md

    Cada `dict` de exemplo específico em `examples` pode conter:
    
    * `summary`: Pequena descrição do exemplo.
    * `description`: Uma descrição longa que pode conter texto em Markdown.
    * `value`: O próprio exemplo mostrado, ex: um `dict`.
    * `externalValue`: alternativa ao `value`, uma URL apontando para o exemplo. Embora isso possa não ser suportado por tantas ferramentas quanto `value`.
    
    ```Python hl_lines="22-48"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  3. docs/pt/docs/async.md

    * conteúdo de um arquivo no disco pra ser lido pelo sistema e entregar ao seu programa
    * conteúdo que seu programa deu ao sistema para ser escrito no disco
    * uma operação remota API
    * uma operação no banco de dados para finalizar
    * uma solicitação no banco de dados esperando o retorno do resultado
    * etc.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.23.md

    - Add a new `distribute-cpus-across-numa` option to the static `CPUManager` policy. When enabled, this will trigger the `CPUManager` to evenly distribute CPUs across NUMA nodes in cases where more than one NUMA node is required to satisfy the allocation. ([#105631](https://github.com/kubernetes/kubernetes/pull/105631), [@klueska](https://github.com/klueska))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Feb 28 21:06:52 GMT 2023
    - 424.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.17.md

    - Fixed a bug in the single-numa-policy of the TopologyManager. Previously, best-effort pods would result in a terminated state with a TopologyAffinity error. Now they will run as expected. ([#83777](https://github.com/kubernetes/kubernetes/pull/83777), [@lmdaly](https://github.com/lmdaly))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Viewed (1)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_NTP_GETTIME ideal-int
    pkg syscall (freebsd-arm64), const SYS_NUMA_GETAFFINITY = 548
    pkg syscall (freebsd-arm64), const SYS_NUMA_GETAFFINITY ideal-int
    pkg syscall (freebsd-arm64), const SYS_NUMA_SETAFFINITY = 549
    pkg syscall (freebsd-arm64), const SYS_NUMA_SETAFFINITY ideal-int
    pkg syscall (freebsd-arm64), const SYS_OBREAK = 17
    pkg syscall (freebsd-arm64), const SYS_OBREAK ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.16.md

    * Fixed a bug in the single-numa-policy of the TopologyManager. Previously, best-effort pods would result in a terminated state with a TopologyAffinity error. Now they will run as expected. ([#83777](https://github.com/kubernetes/kubernetes/pull/83777), [@lmdaly](https://github.com/lmdaly))...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Feb 11 10:00:57 GMT 2021
    - 345.2K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_NTP_GETTIME ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_NUMA_GETAFFINITY = 548 #53466
    pkg syscall (freebsd-riscv64), const SYS_NUMA_GETAFFINITY ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_NUMA_SETAFFINITY = 549 #53466
    pkg syscall (freebsd-riscv64), const SYS_NUMA_SETAFFINITY ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_OBREAK = 17 #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/extra-models.md

    * O **modelo de entrada** precisa ser capaz de ter uma senha.
    * O **modelo de saída** não deve ter uma senha.
    * O **modelo de banco de dados** provavelmente precisaria ter uma senha criptografada.
    
    !!! danger
        Nunca armazene senhas em texto simples dos usuários. Sempre armazene uma "hash segura" que você pode verificar depois.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/path-operation-configuration.md

    !!! check
        OpenAPI especifica que cada *operação de rota* requer uma descrição de resposta.
    
        Então, se você não fornecer uma, o **FastAPI** irá gerar automaticamente uma de "Resposta bem-sucedida".
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## Depreciar uma *operação de rota*
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 5.9K bytes
    - Viewed (0)
Back to top