Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 29 (0.02 sec)

  1. docs/pt/docs/how-to/extending-openapi.md

    ```Python hl_lines="13-14  25-26"
    {!../../docs_src/extending_openapi/tutorial001.py!}
    ```
    
    ### Sobrescrever o método
    
    Agora, você pode substituir o método `.openapi()` pela sua nova função.
    
    ```Python hl_lines="29"
    {!../../docs_src/extending_openapi/tutorial001.py!}
    ```
    
    ### Verificar
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 17:40:08 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. .github/workflows/sigbuild-docker-branch.yml

          -
            name: Generate variables for cache busting and tag naming
            run: |
              echo "DATE=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
              # Converts r2.9 to just 2.9
              echo "REF=$(echo $GITHUB_REF_NAME | sed 's/r//g')" >> "$GITHUB_OUTPUT"
            id: vars
          -
            name: Build and push
            id: docker_build
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/extending-openapi.md

    {* ../../docs_src/extending_openapi/tutorial001.py hl[13:14,25:26] *}
    
    ### Override the method
    
    Now you can replace the `.openapi()` method with your new function.
    
    {* ../../docs_src/extending_openapi/tutorial001.py hl[29] *}
    
    ### Check it
    
    Once you go to <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a> you will see that you are using your custom logo (in this example, **FastAPI**'s logo):
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 22:39:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

     * @see <a href="https://en.wikipedia.org/wiki/Binary_prefix">https://en.wikipedia.org/wiki/Binary_prefix</a>
     * @see <a
     *      href="https://en.wikipedia.org/wiki/Octet_%28computing%29">https://en.wikipedia.org/wiki/Octet_(computing)</a>
     */
    public class FileSizeFormat {
        public enum ScaleUnit {
            BYTE {
                @Override
                public long bytes() {
                    return 1L;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. .github/workflows/update-rbe.yml

            # This is a mapping of name_container_map keys under sigbuild_tf_configs
            # to tag names on gcr.io/tensorflow-sigs/build.
            # TF 2.9
            map sigbuild-r2.9 2.9-python3.9
            map sigbuild-r2.9-python3.8 2.9-python3.8
            map sigbuild-r2.9-python3.9 2.9-python3.9
            map sigbuild-r2.9-python3.10 2.9-python3.10
            # TF 2.10
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/armerror.s

    	BIC.P	$124, R1, R2       // ERROR "invalid .P suffix"
    	MOVW.S	$124, R1           // ERROR "invalid .S suffix"
    	MVN.S	$123, g            // ERROR "invalid .S suffix"
    	RSB.U	$0, R9             // ERROR "invalid .U suffix"
    	CMP.S	$29, g             // ERROR "invalid .S suffix"
    	ADD.W	R1<<R2, R3         // ERROR "invalid .W suffix"
    	SUB.U	R1<<R2, R3, R9     // ERROR "invalid .U suffix"
    	CMN.S	R5->R2, R1         // ERROR "invalid .S suffix"
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 23 15:18:14 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. docs/pt/docs/advanced/custom-response.md

    ### `RedirectResponse`
    
    Retorna um redirecionamento HTTP. Utiliza o código de status 307 (Redirecionamento Temporário) por padrão.
    
    Você pode retornar uma `RedirectResponse` diretamente:
    
    ```Python hl_lines="2  9"
    {!../../docs_src/custom_response/tutorial006.py!}
    ```
    
    ---
    
    Ou você pode utilizá-la no parâmetro `response_class`:
    
    ```Python hl_lines="2  7  9"
    {!../../docs_src/custom_response/tutorial006b.py!}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 29 11:47:10 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            UNDERLINE_OFF(24, "UNDERLINE_OFF"),
            BLINK_OFF(25, "BLINK_OFF"),
            NEGATIVE_OFF(27, "NEGATIVE_OFF"),
            CONCEAL_OFF(28, "CONCEAL_OFF"),
            STRIKETHROUGH_OFF(29, "STRIKETHROUGH_OFF");
    
            private final int value;
            private final String name;
    
            Attribute(int index, String name) {
                this.value = index;
                this.name = name;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

      allows this sysctl in `v1.29+` versions of the baseline and restricted policies. ([#121240](https://github.com/kubernetes/kubernetes/pull/121240), [@HirazawaUi](https://github.com/HirazawaUi))
    - `kubelet` now allows pods to use the `net.ipv4.tcp_keepalive_time` sysctl by default
      and the minimal kernel version is 4.5; Pod Security Admission allows this sysctl
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:37:31 UTC 2024
    - 375.1K bytes
    - Viewed (1)
  10. android/guava-tests/test/com/google/common/collect/ListsTest.java

        /* fromList modifications reflected in toList */
        fromList.set(0, 5);
        assertEquals(asList(4, 3, 2, 5), toList);
        fromList.add(6);
        assertEquals(asList(6, 4, 3, 2, 5), toList);
        fromList.add(2, 9);
        assertEquals(asList(6, 4, 3, 9, 2, 5), toList);
        fromList.remove(Integer.valueOf(2));
        assertEquals(asList(6, 4, 3, 9, 5), toList);
        fromList.remove(3);
        assertEquals(asList(6, 3, 9, 5), toList);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top