- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 187 for persona (0.05 sec)
-
guava/src/com/google/common/reflect/Invokable.java
} /** * Explicitly specifies the return type of this {@code Invokable}. For example: * * <pre>{@code * Method factoryMethod = Person.class.getMethod("create"); * Invokable<?, Person> factory = Invokable.of(getNameMethod).returning(Person.class); * }</pre> */ public final <R1 extends R> Invokable<T, R1> returning(Class<R1> returnType) { return returning(TypeToken.of(returnType)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 19.6K bytes - Viewed (0) -
docs/en/docs/help-fastapi.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Aug 15 23:30:12 UTC 2024 - 13.7K bytes - Viewed (0) -
docs/tr/docs/python-types.md
### Tip olarak Sınıflar Bir değişkenin tipini bir sınıf ile bildirebilirsiniz. Diyelim ki `name` değerine sahip `Person` sınıfınız var: ```Python hl_lines="1-3" {!../../docs_src/python_types/tutorial010.py!} ``` Sonra bir değişkeni 'Person' tipinde tanımlayabilirsiniz: ```Python hl_lines="6" {!../../docs_src/python_types/tutorial010.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.7K bytes - Viewed (0) -
docs/fr/docs/async.md
Le serveur va dans la cuisine 👨🍳. Vous attendez devant le comptoir afin que personne ne prenne vos burgers 🍔 avant vous, vu qu'il n'y a pas de numéro de commande. <img src="/img/async/parallel-burgers/parallel-burgers-03.png" class="illustration">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 25.4K bytes - Viewed (0) -
docs/fr/docs/python-types.md
### Classes en tant que types Vous pouvez aussi déclarer une classe comme type d'une variable. Disons que vous avez une classe `Person`, avec une variable `name` : {*../../docs_src/python_types/tutorial010.py hl[1:3] *} Vous pouvez ensuite déclarer une variable de type `Person` : {*../../docs_src/python_types/tutorial010.py hl[6] *} Et vous aurez accès, encore une fois, au support complet offert par l'éditeur :
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:21:34 UTC 2024 - 10K bytes - Viewed (0) -
fess-crawler/src/test/resources/extractor/eml/sample4.eml
15.45 Treffen (pünktlich!) im Museum Berggruen an der Kasse , Schloßstraße 1, 14059 Berlin. Die Führung findet ausschließlich in deutscher Sprache statt und dauert ca. 2 Stunden. Die Eigenbeteiligung beträgt 3,-- €/Person (incl. Eintritt und Führung) Es wird um schnellstmögliche verbindliche Anmeldung und Bezahlung gebeten. Die Anmeldung ist ab sofort möglich: Abt. I – Studierendenservice, Team für Betreuung Internationaler Studierender im Raum H 51.
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sun Jan 07 09:15:11 UTC 2018 - 681K bytes - Viewed (0) -
docs/uk/docs/python-types.md
//// ### Класи як типи Ви також можете оголосити клас як тип змінної. Скажімо, у вас є клас `Person` з імʼям: ```Python hl_lines="1-3" {!../../docs_src/python_types/tutorial010.py!} ``` Потім ви можете оголосити змінну типу `Person`: ```Python hl_lines="6" {!../../docs_src/python_types/tutorial010.py!} ``` І знову ж таки, ви отримуєте всю підтримку редактора:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 19.5K bytes - Viewed (0) -
docs/zh/docs/python-types.md
* 这个 `dict` 的所有值为 `float` 类型(可以看作是字典内每个元素的价格)。 ### 类作为类型 你也可以将类声明为变量的类型。 假设你有一个名为 `Person` 的类,拥有 name 属性: ```Python hl_lines="1-3" {!../../docs_src/python_types/tutorial010.py!} ``` 接下来,你可以将一个变量声明为 `Person` 类型: ```Python hl_lines="6" {!../../docs_src/python_types/tutorial010.py!} ``` 然后,你将再次获得所有的编辑器支持:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/metadata.md
ão</th></tr></thead><tbody><tr><td><code>name</code></td><td><code>str</code></td><td>O nome identificador da pessoa/organização de contato.</td></tr><tr><td><code>url</code></td><td><code>str</code></td><td>A URL que aponta para as informações de contato. DEVE estar no formato de uma URL.</td></tr><tr><td><code>email</code></td><td><code>str</code></td><td>O endereço de e-mail da pessoa/organização de contato. DEVE estar no formato de um endereço de e-mail.</td></tr></tbody></table></details> |...
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 29 10:36:14 UTC 2024 - 6.1K bytes - Viewed (0) -
docs/ko/docs/python-types.md
* ...등등 위와 같은 타입은 **Generic(제네릭) 타입** 혹은 **Generics(제네릭스)**라고 불립니다. ### 타입으로서의 클래스 변수의 타입으로 클래스를 선언할 수도 있습니다. 이름(name)을 가진 `Person` 클래스가 있다고 해봅시다. ```Python hl_lines="1-3" {!../../docs_src/python_types/tutorial010.py!} ``` 그렇게 하면 변수를 `Person`이라고 선언할 수 있게 됩니다. ```Python hl_lines="6" {!../../docs_src/python_types/tutorial010.py!} ``` 그리고 역시나 모든 에디터 도움을 받게 되겠죠.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0)