Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for Tu (0.28 sec)

  1. src/debug/dwarf/typeunit.go

    func (d *Data) sigToType(sig uint64) (Type, error) {
    	tu := d.typeSigs[sig]
    	if tu == nil {
    		return nil, fmt.Errorf("no type unit with signature %v", sig)
    	}
    	if tu.cache != nil {
    		return tu.cache, nil
    	}
    
    	b := makeBuf(d, tu, tu.name, tu.off, tu.data)
    	r := &typeUnitReader{d: d, tu: tu, b: b}
    	t, err := d.readType(tu.name, r, tu.toff, make(map[Offset]Type), nil)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. docs/vi/docs/python-types.md

        * `list`
        * `tuple`
        * `set`
        * `dict`
    
        Và tương tự với Python 3.6, từ mô đun `typing`:
    
        * `Union`
        * `Optional` (tương tự như Python 3.6)
        * ...và các kiểu dữ liệu khác.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. docs/vi/docs/tutorial/first-steps.md

        Nó là một "**decorator đường dẫn toán tử**".
    
    Bạn cũng có thể sử dụng với các toán tử khác:
    
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    
    Và nhiều hơn với các toán tử còn lại:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    !!! tip
        Bạn thoải mái sử dụng mỗi toán tử (phương thức HTTP) như bạn mơ ước.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/runtime/time_fake.go

    	var buf [4 + 8 + 4]byte
    	buf[2] = 'P'
    	buf[3] = 'B'
    	tu := uint64(t)
    	buf[4] = byte(tu >> (7 * 8))
    	buf[5] = byte(tu >> (6 * 8))
    	buf[6] = byte(tu >> (5 * 8))
    	buf[7] = byte(tu >> (4 * 8))
    	buf[8] = byte(tu >> (3 * 8))
    	buf[9] = byte(tu >> (2 * 8))
    	buf[10] = byte(tu >> (1 * 8))
    	buf[11] = byte(tu >> (0 * 8))
    	nu := uint32(n)
    	buf[12] = byte(nu >> (3 * 8))
    	buf[13] = byte(nu >> (2 * 8))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/time/mono_test.go

    	yes("Now()", Now())
    
    	tu := Unix(1486057371, 0)
    	tm := tu
    	SetMono(&tm, 123456)
    	no("tu", tu)
    	yes("tm", tm)
    
    	no("tu.Add(1)", tu.Add(1))
    	no("tu.In(UTC)", tu.In(UTC))
    	no("tu.AddDate(1, 1, 1)", tu.AddDate(1, 1, 1))
    	no("tu.AddDate(0, 0, 0)", tu.AddDate(0, 0, 0))
    	no("tu.Local()", tu.Local())
    	no("tu.UTC()", tu.UTC())
    	no("tu.Round(2)", tu.Round(2))
    	no("tu.Truncate(2)", tu.Truncate(2))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  6. docs/vi/docs/features.md

    * Thậm chí, các dependency có thể có các dependency khác, tạo thành một phân cấp hoặc **"một đồ thị" của các dependency**.
    * Tất cả **được xử lí tự động** bởi framework.
    * Tất cả các dependency có thể yêu cầu dữ liệu từ request và **tăng cường các ràng buộc từ đường dẫn** và tự động tài liệu hóa.
    * **Tự động hóa validation**, thậm chí với các tham số *đường dẫn* định nghĩa trong các dependency.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/go/types/conversions.go

    	if isString(Vu) && isBytesOrRunes(Tu) {
    		return true
    	}
    
    	// package unsafe:
    	// "any pointer or value of underlying type uintptr can be converted into a unsafe.Pointer"
    	if (isPointer(Vu) || isUintptr(Vu)) && isUnsafePointer(Tu) {
    		return true
    	}
    	// "and vice versa"
    	if isUnsafePointer(Vu) && (isPointer(Tu) || isUintptr(Tu)) {
    		return true
    	}
    
    	// "V is a slice, T is an array or pointer-to-array type,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. docs/es/docs/tutorial/index.md

    </div>
    
    ...eso también incluye `uvicorn` que puedes usar como el servidor que ejecuta tu código.
    
    !!! note "Nota"
        También puedes instalarlo parte por parte.
    
        Esto es lo que probablemente harías una vez que desees implementar tu aplicación en producción:
    
        ```
        pip install fastapi
        ```
    
        También debes instalar `uvicorn` para que funcione como tu servidor:
    
        ```
        pip install "uvicorn[standard]"
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/first-steps.md

    En el output, hay una línea que dice más o menos:
    
    ```hl_lines="4"
    INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    Esa línea muestra la URL dónde se está sirviendo tu app en tu maquina local.
    
    ### Revísalo
    
    Abre tu navegador en <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a>.
    
    Verás la respuesta en JSON:
    
    ```JSON
    {"message": "Hello World"}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. docs/es/docs/benchmarks.md

        * No escribirías una aplicación directamente en Uvicorn. Eso significaría que tu código tendría que incluir más o menos, al menos, todo el código proporcionado por Starlette (o **FastAPI**). Y si hicieras eso, tu aplicación final tendría la misma sobrecarga que si hubieras usado un framework y minimizado el código de tu aplicación y los errores.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:39:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top