- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 21 for firstFrame (0.06 seconds)
-
docs/pt/docs/python-types.md
```Python first_name, last_name ``` para: ```Python first_name: str, last_name: str ``` É isso aí. Esses são os "type hints": {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *} Isso não é o mesmo que declarar valores padrão como seria com: ```Python first_name="john", last_name="doe" ``` É uma coisa diferente.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) -
guava/src/com/google/common/collect/Multimap.java
* ListMultimap<String, String> multimap = ArrayListMultimap.create(); * for (President pres : US_PRESIDENTS_IN_ORDER) { * multimap.put(pres.firstName(), pres.lastName()); * } * for (String firstName : multimap.keySet()) { * List<String> lastNames = multimap.get(firstName); * out.println(firstName + ": " + lastNames); * } * } * * ... produces output such as: * * {@snippet : * Zachary: [Taylor]
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 15.7K bytes - Click Count (0) -
docs/tr/docs/python-types.md
Fonksiyonun parametreleri olan şu parçayı: ```Python first_name, last_name ``` şuna çevireceğiz: ```Python first_name: str, last_name: str ``` Bu kadar. Bunlar "type hints": {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *} Bu, aşağıdaki gibi default değerler bildirmekle aynı şey değildir: ```Python first_name="john", last_name="doe" ``` Bu farklı bir şey.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 11.9K bytes - Click Count (0) -
docs/uk/docs/python-types.md
Ви надрукуєте перший параметр функції, `first_name`, тоді крапку (`.`), а тоді натиснете `Ctrl+Space`, щоб запустити автозаповнення. Але, на жаль, ви не отримаєте нічого корисного: <img src="/img/python-types/image01.png"> ### Додайте типи { #add-types } Давайте змінимо один рядок з попередньої версії. Ми змінимо саме цей фрагмент, параметри функції, з: ```Python first_name, last_name ``` на:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 17.4K bytes - Click Count (0) -
tests/test_schema_extra_examples.py
# TODO: In that case, define if File() should support example/examples too # @app.post("/form_example") # def form_example(firstname: str = Form(example="John")): # return firstname # @app.post("/form_examples") # def form_examples( # lastname: str = Form( # ..., # examples={
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 34.7K bytes - Click Count (0) -
docs/fr/docs/python-types.md
```Python first_name, last_name ``` à : ```Python first_name: str, last_name: str ``` C'est tout. Ce sont les « annotations de type » : {* ../../docs_src/python_types/tutorial002_py310.py hl[1] *} Ce n'est pas la même chose que de déclarer des valeurs par défaut, ce qui serait : ```Python first_name="john", last_name="doe" ``` C'est différent.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.7K bytes - Click Count (0) -
docs/zh/docs/python-types.md
然后,你试试程序员的老朋友——编辑器的自动补全。 你输入函数的第一个参数 `first_name`,再输入一个点(`.`),然后按下 `Ctrl+Space` 触发补全。 但很遗憾,没有什么有用的提示: <img src="/img/python-types/image01.png"> ### 添加类型 { #add-types } 我们来改前一个版本的一行代码。 把函数参数从: ```Python first_name, last_name ``` 改成: ```Python first_name: str, last_name: str ``` 就是这样。 这些就是“类型提示”:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 10.6K bytes - Click Count (0) -
tensorflow/c/eager/c_api_cluster_test.cc
// when updating cluster with non-exsitent worker tensorflow::setenv("GRPC_FAIL_FAST", "TRUE", /*overwrite=*/1); const string first_name = keep_localhost_for_first_connect ? "localhost" : "abc"; tensorflow::ServerDef server_def = GetServerDef(first_name, 1); TF_Status* status = TF_NewStatus(); TFE_ContextOptions* opts = TFE_NewContextOptions();Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Oct 09 05:56:18 GMT 2025 - 19.2K bytes - Click Count (0) -
docs/ko/docs/python-types.md
그 다음, 개발자들의 오랜 친구인 에디터 자동완성을 시도합니다. 함수의 첫 번째 매개변수인 `first_name`을 입력하고, 점(`.`)을 찍은 다음, 완성을 트리거하기 위해 `Ctrl+Space`를 누릅니다. 하지만, 슬프게도 쓸만한 게 아무것도 없습니다: <img src="/img/python-types/image01.png"> ### 타입 추가하기 { #add-types } 이전 버전에서 한 줄만 수정해봅시다. 함수의 매개변수인 정확히 이 부분을: ```Python first_name, last_name ``` 에서: ```Python first_name: str, last_name: str ``` 로 바꾸겠습니다. 이게 다입니다.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 13K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Multimap.java
* ListMultimap<String, String> multimap = ArrayListMultimap.create(); * for (President pres : US_PRESIDENTS_IN_ORDER) { * multimap.put(pres.firstName(), pres.lastName()); * } * for (String firstName : multimap.keySet()) { * List<String> lastNames = multimap.get(firstName); * out.println(firstName + ": " + lastNames); * } * } * * ... produces output such as: * * {@snippet : * Zachary: [Taylor]
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 15K bytes - Click Count (0)