Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 199 for December (0.14 sec)

  1. docs/pt/docs/tutorial/request-forms-and-files.md

        Isso não é uma limitação do **FastAPI** , é parte do protocolo HTTP.
    
    ## Recapitulando
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    //
    // Expands to the name of the variable used to remember the names of
    // the defined tests in the given test case.
    # define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \
      gtest_typed_test_case_p_state_##TestCaseName##_
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY.
    //
    // Expands to the name of the variable used to remember the names of
    // the registered tests in the given test case.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    //
    // Expands to the name of the variable used to remember the names of
    // the defined tests in the given test case.
    # define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \
      gtest_typed_test_case_p_state_##TestCaseName##_
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY.
    //
    // Expands to the name of the variable used to remember the names of
    // the registered tests in the given test case.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    larger sense, we can not dedicate - we can not consecrate - we can not hallow - this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/events.md

    Do mesmo modo, você pode definir a lógica (código) que será executada quando a aplicação estiver sendo **encerrada**. Nesse caso, este código será executado **uma vez**, **depois** de ter possivelmente tratado **várias requisições**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. docs/en/docs/reference/status.md

    For example:
    
    * 200: `status.HTTP_200_OK`
    * 403: `status.HTTP_403_FORBIDDEN`
    * etc.
    
    It can be convenient to quickly access HTTP (and WebSocket) status codes in your app, using autocompletion for the name without having to remember the integer status codes by memory.
    
    Read more about it in the [FastAPI docs about Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/).
    
    ## Example
    
    ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 871 bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/request-forms.md

    # Dados do formulário
    
    Quando você precisar receber campos de formulário ao invés de JSON, você pode usar `Form`.
    
    !!! info "Informação"
        Para usar formulários, primeiro instale <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        Ex: `pip install python-multipart`.
    
    ## Importe `Form`
    
    Importe `Form` de `fastapi`:
    
    ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/net/dnsname_test.go

    	longDomain := strings.Repeat(char63+".", 5) + "example"
    
    	for _, tc := range dnsNameTests {
    		ch <- tc
    	}
    
    	ch <- dnsNameTest{char63 + ".com", true}
    	ch <- dnsNameTest{char64 + ".com", false}
    
    	// Remember: wire format is two octets longer than presentation
    	// (length octets for the first and [root] last labels).
    	// 253 is fine:
    	ch <- dnsNameTest{longDomain[len(longDomain)-253:], true}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersection.java

    /**
     * Represents an attempt to simplify two exclude specs into a single exclude spec.
     *
     * @param <L> the type of the first (left) exclude spec
     * @param <R> the type of the second (right) exclude spec
     *
     * @implSpec Remember that the order of the exclude specs must not be significant.
     */
    @NonNullApi
    public interface Intersection<L extends ExcludeSpec, R extends ExcludeSpec> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/log/slog/handler.go

    		if h2.json && pfa[len(pfa)-1] == '{' {
    			state.sep = ""
    		}
    	}
    	// Remember the position in the buffer, in case all attrs are empty.
    	pos := state.buf.Len()
    	state.openGroups()
    	if !state.appendAttrs(as) {
    		state.buf.SetLen(pos)
    	} else {
    		// Remember the new prefix for later keys.
    		h2.groupPrefix = state.prefix.String()
    		// Remember how many opened groups are in preformattedAttrs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top