Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 343 for December (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/init_test.go

    package main_test
    
    import (
    	"internal/testenv"
    	"sync/atomic"
    	"testing"
    )
    
    // BenchmarkExecGoEnv measures how long it takes for 'go env GOARCH' to run.
    // Since 'go' is executed, remember to run 'go install cmd/go' before running
    // the benchmark if any changes were done.
    func BenchmarkExecGoEnv(b *testing.B) {
    	testenv.MustHaveExec(b)
    	gotool, err := testenv.GoTool()
    	if err != nil {
    		b.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:26 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. src/crypto/cipher/example_test.go

    	if _, err := io.ReadFull(rand.Reader, iv); err != nil {
    		panic(err)
    	}
    
    	mode := cipher.NewCBCEncrypter(block, iv)
    	mode.CryptBlocks(ciphertext[aes.BlockSize:], plaintext)
    
    	// It's important to remember that ciphertexts must be authenticated
    	// (i.e. by using crypto/hmac) as well as being encrypted in order to
    	// be secure.
    
    	fmt.Printf("%x\n", ciphertext)
    }
    
    func ExampleNewCFBDecrypter() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 30 16:23:44 UTC 2018
    - 11.8K bytes
    - Viewed (0)
  6. test/stackobj.go

    	}
    	if c != 1 {
    		panic(fmt.Sprintf("expected collection at phase 1, got phase %d", c))
    	}
    }
    
    func f() {
    	var s StkObj
    	s.h = new(HeapObj)
    	runtime.SetFinalizer(s.h, func(h *HeapObj) {
    		// Remember at what phase the heap object was collected.
    		c = n
    	})
    	g(&s)
    	gc()
    }
    
    func g(s *StkObj) {
    	gc() // heap object is still live here
    	runtime.KeepAlive(s)
    	gc() // heap object should be collected here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:16 UTC 2018
    - 975 bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE.md

    title: ''
    labels: community, triage
    assignees: ''
    
    ---
    
    ## NOTE
    All GitHub issues are addressed on a best-effort basis at MinIO's sole discretion. There are no Service Level Agreements (SLA) or Objectives (SLO). Remember our [Code of Conduct](https://github.com/minio/minio/blob/master/code_of_conduct.md) when engaging with MinIO Engineers and the larger community.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 29 00:04:16 UTC 2022
    - 2K 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/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap_windows.go

    	addr, err := windows.MapViewOfFile(h, syscall.FILE_MAP_READ|syscall.FILE_MAP_WRITE, 0, 0, 0)
    	if err != nil {
    		return Data{}, fmt.Errorf("MapViewOfFile %s: %w", f.Name(), err)
    	}
    	// need to remember addr and h for unmapping
    	return Data{f, unsafe.Slice((*byte)(unsafe.Pointer(addr)), size), h}, nil
    }
    
    func munmapFile(d Data) error {
    	err := windows.UnmapViewOfFile(uintptr(unsafe.Pointer(&d.Data[0])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top