Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 491 for generics (0.08 seconds)

  1. docs/ko/docs/python-types.md

    ```python
    from typing import Any
    
    
    def some_function(data: Any):
        print(data)
    ```
    
    ### Generic(제네릭) 타입 { #generic-types }
    
    일부 타입은 대괄호 안에 "타입 매개변수"를 받아 내부 타입을 정의할 수 있습니다. 예를 들어 "문자열의 리스트"는 `list[str]`로 선언합니다.
    
    이렇게 타입 매개변수를 받을 수 있는 타입을 **Generic types** 또는 **Generics**라고 부릅니다.
    
    대괄호와 내부 타입을 사용해 동일한 내장 타입들을 제네릭으로 사용할 수 있습니다:
    
    * `list`
    * `tuple`
    * `set`
    * `dict`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 13K bytes
    - Click Count (0)
  2. doc/go_spec.html

    Type equations are always solved for the bound type parameters only.
    </p>
    
    <p>
    Type inference supports calls of generic functions and assignments
    of generic functions to (explicitly function-typed) variables.
    This includes passing generic functions as arguments to other
    (possibly also generic) functions, and returning generic functions
    as results.
    Type inference operates on a set of equations specific to each of
    these cases.
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Apr 01 23:39:18 GMT 2026
    - 287.8K bytes
    - Click Count (1)
  3. cmd/generic-handlers_contrib.go

    Harshavardhana <******@****.***> 1619748103 -0700
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Apr 30 15:50:39 GMT 2021
    - 995 bytes
    - Click Count (0)
  4. cmd/generic-handlers.go

    Klaus Post <******@****.***> 1756435188 +0200
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 20.7K bytes
    - Click Count (1)
  5. cmd/generic-handlers_test.go

    Klaus Post <******@****.***> 1756435188 +0200
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  6. .ci/templates.t/generic-gradle-unix.yml

    Mark Vieira <******@****.***> 1618441772 -0700
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 549 bytes
    - Click Count (0)
  7. docs/es/docs/python-types.md

        print(data)
    ```
    
    ### Tipos genéricos { #generic-types }
    
    Algunos tipos pueden tomar "parámetros de tipo" entre corchetes, para definir sus tipos internos, por ejemplo una "lista de strings" se declararía `list[str]`.
    
    Estos tipos que pueden tomar parámetros de tipo se llaman **Tipos Genéricos** o **Genéricos**.
    
    Puedes usar los mismos tipos integrados como genéricos (con corchetes y tipos dentro):
    
    * `list`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 11.6K bytes
    - Click Count (1)
  8. docs/pt/docs/python-types.md

        print(data)
    ```
    
    ### Tipos genéricos { #generic-types }
    
    Alguns tipos podem receber "parâmetros de tipo" entre colchetes, para definir seus tipos internos, por exemplo, uma "lista de strings" seria declarada como `list[str]`.
    
    Esses tipos que podem receber parâmetros de tipo são chamados **tipos genéricos** ou **genéricos**.
    
    Você pode usar os mesmos tipos internos como genéricos (com colchetes e tipos dentro):
    
    * `list`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  9. docs/en/docs/release-notes.md

    ## 0.31.0 (2019-06-28)
    
    * Upgrade Pydantic supported version to `0.29.0`.
        * New supported version range is `"pydantic >=0.28,<=0.29.0"`.
        * This adds support for Pydantic [Generic Models](https://docs.pydantic.dev/latest/#generic-models), kudos to [@dmontagu](https://github.com/dmontagu).
        * PR [#344](https://github.com/tiangolo/fastapi/pull/344).
    
    ## 0.30.1 (2019-06-28)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
  10. RELEASE.md

    *   Add `log_rate` parameter to `tf.contrib.distributions.Poisson`.
    *   Extend `tf.contrib.distributions.bijector` API to handle some non-injective
        transforms.
    *   Java:
        *   Generics (e.g., `Tensor<Integer>`) for improved type-safety (courtesy
            @andrewcmyers).
        *   Support for multi-dimensional string tensors.
        *   Support loading of custom operations (e.g. many in `tf.contrib`) on
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top