- Sort Score
- Num 10 results
- Language All
Results 181 - 190 of 1,342 for makin (0.02 seconds)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/TagsTest.kt
val tags = EmptyTags val atomicTags = AtomicReference<Tags>(tags) val result = atomicTags.computeIfAbsent(String::class) { // 'Race' by making another computeIfAbsent call. In practice this would be another thread. assertThat(atomicTags.computeIfAbsent(Integer::class) { 5 as Integer }).isEqualTo(5) "a" } assertThat(result).isEqualTo("a")Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Oct 24 11:37:46 GMT 2025 - 7.1K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/error/notFound.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 1.5K bytes - Click Count (0) -
docs/uk/docs/tutorial/first-steps.md
```python from main import app ``` Якщо структура вашого коду виглядала б так: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` Тоді ви б задали `entrypoint` як: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` що було б еквівалентно: ```python from backend.main import app ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 18.7K bytes - Click Count (0) -
docs/fr/docs/advanced/settings.md
Par exemple, vous pourriez avoir un fichier `config.py` avec : {* ../../docs_src/settings/app01_py310/config.py *} Puis l'utiliser dans un fichier `main.py` : {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *} /// tip | AstuceCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.3K bytes - Click Count (0) -
docs/ko/docs/environment-variables.md
//// tab | Linux, macOS, Windows Bash <div class="termy"> ```console // 여기서는 아직 환경 변수를 설정하지 않습니다 $ python main.py // 환경 변수를 설정하지 않았으므로 기본값이 사용됩니다 Hello World from Python // 하지만 먼저 환경 변수를 생성하면 $ export MY_NAME="Wade Wilson" // 그리고 프로그램을 다시 실행하면 $ python main.py // 이제 환경 변수를 읽을 수 있습니다 Hello Wade Wilson from Python ``` </div> ////
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 9K bytes - Click Count (0) -
docs/zh/docs/environment-variables.md
然后你可以调用这个 Python 程序: //// tab | Linux, macOS, Windows Bash <div class="termy"> ```console // 这里我们还没有设置环境变量 $ python main.py // 因为我们没有设置环境变量,所以我们得到的是默认值 Hello World from Python // 但是如果我们事先创建过一个环境变量 $ export MY_NAME="Wade Wilson" // 然后再次调用程序 $ python main.py // 现在就可以读取到环境变量了 Hello Wade Wilson from Python ``` </div> //// //// tab | Windows PowerShell
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 7.8K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/first-steps.md
這個 `entrypoint` 會告訴 `fastapi` 指令應該用下面的方式匯入 app: ```python from main import app ``` 如果你的程式碼結構像是: ``` . ├── backend │ ├── main.py │ ├── __init__.py ``` 那你應該把 `entrypoint` 設為: ```toml [tool.fastapi] entrypoint = "backend.main:app" ``` 這等同於: ```python from backend.main import app ``` ### 搭配路徑使用 `fastapi dev` { #fastapi-dev-with-path }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 13.3K bytes - Click Count (0) -
doc/godebug.md
The defaults that will be compiled into a main package are reported by the command: go list -f '{{.DefaultGODEBUG}}' my/main/package Only differences from the base Go toolchain defaults are reported. When testing a package, `//go:debug` lines in the `*_test.go` files are treated as directives for the test's main package. In any other context, `//go:debug` lines are ignored by the toolchain;Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Mar 20 15:49:10 GMT 2026 - 26K bytes - Click Count (0) -
scripts/add_latest_release_date.py
import re import sys from datetime import date RELEASE_NOTES_FILE = "docs/en/docs/release-notes.md" RELEASE_HEADER_PATTERN = re.compile(r"^## (\d+\.\d+\.\d+)\s*(\(.*\))?\s*$") def main() -> None: with open(RELEASE_NOTES_FILE) as f: lines = f.readlines() for i, line in enumerate(lines): match = RELEASE_HEADER_PATTERN.match(line) if not match: continue
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:06:36 GMT 2026 - 1023 bytes - Click Count (0) -
docs/pt/docs/environment-variables.md
<div class="termy"> ```console // Aqui ainda não definimos a variável de ambiente $ python main.py // Como não definimos a variável de ambiente, obtemos o valor padrão Hello World from Python // Mas se criarmos uma variável de ambiente primeiro $ export MY_NAME="Wade Wilson" // E então chamar o programa novamente $ python main.py // Agora ele pode ler a variável de ambiente Hello Wade Wilson from Python ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.4K bytes - Click Count (0)