- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 51 for stdio (0.23 seconds)
-
.gitignore
.*.swp core *.cgo*.go *.cgo*.c _cgo_* _obj _test _testmain.go /VERSION.cache /bin/ /build.out /doc/articles/wiki/*.bin /goinstall.log /last-change /misc/cgo/life/run.out /misc/cgo/stdio/run.out /misc/cgo/testso/main /pkg/ /src/*.*/ /src/_artifacts/ /src/cmd/cgo/zdefaultcc.go /src/cmd/dist/dist /src/cmd/go/internal/cfg/zdefaultcc.go /src/cmd/internal/objabi/zbootstrap.go /src/go/build/zcgo.go
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Nov 10 20:41:03 GMT 2025 - 975 bytes - Click Count (0) -
src/cmd/cgo/doc.go
circumvent this by using a C function wrapper. For example: package main // #include <stdio.h> // #include <stdlib.h> // // static void myprint(char* s) { // printf("%s\n", s); // } import "C" import "unsafe" func main() { cs := C.CString("Hello from stdio") C.myprint(cs) C.free(unsafe.Pointer(cs)) } A few special functions convert between Go and C types
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Dec 08 22:37:14 GMT 2025 - 43.9K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/debugging.md
# 偵錯 { #debugging } 你可以在編輯器中連接偵錯器,例如 Visual Studio Code 或 PyCharm。 ## 呼叫 `uvicorn` { #call-uvicorn } 在你的 FastAPI 應用程式中,直接匯入並執行 `uvicorn`: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### 關於 `__name__ == "__main__"` { #about-name-main } `__name__ == "__main__"` 的主要目的是,當你的檔案以以下方式呼叫時,執行某些程式碼: <div class="termy"> ```console $ python myapp.py ``` </div> 但當其他檔案匯入它時不會執行,例如: ```PythonCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.4K bytes - Click Count (0) -
ci/devinfra/docker/windows2022/Dockerfile
Remove-Item .\7z.msi; # Download the Visual Studio 2022 Installer. RUN (New-Object Net.WebClient).DownloadFile('https://aka.ms/vs/17/release/vs_community.exe', 'C:\TEMP\vs_community.exe'); # Install Visual Studio 2022 Build Tools + Compiler SHELL ["cmd", "/S", "/C"] # Packages, and component versions, can be found here:
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Mar 04 19:50:57 GMT 2026 - 10.4K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt
) val nightlyBuildId = fetchNightlyBuildId( "https://androidx.dev/studio/builds" ) val nightlyVersion = fetchNightlyVersion( "https://androidx.dev/studio/builds/$nightlyBuildId/artifacts/artifacts/repository/com/android/application/com.android.application.gradle.plugin/maven-metadata.xml" )Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Oct 24 09:10:29 GMT 2025 - 7.6K bytes - Click Count (0) -
docs/en/docs/tutorial/debugging.md
# Debugging { #debugging } You can connect the debugger in your editor, for example with Visual Studio Code or PyCharm. ## Call `uvicorn` { #call-uvicorn } In your FastAPI application, import and run `uvicorn` directly: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### About `__name__ == "__main__"` { #about-name-main }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/tr/docs/tutorial/debugging.md
# Debugging { #debugging } Visual Studio Code veya PyCharm gibi editörünüzde debugger'ı bağlayabilirsiniz. ## `uvicorn`'ı Çağırma { #call-uvicorn } FastAPI uygulamanızda `uvicorn`'ı import edip doğrudan çalıştırın: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### `__name__ == "__main__"` Hakkında { #about-name-main } `__name__ == "__main__"` ifadesinin temel amacı, dosyanız şu şekilde çağrıldığında çalışacak:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/de/docs/tutorial/debugging.md
# Debugging { #debugging } Sie können den Debugger in Ihrem Editor verbinden, zum Beispiel mit Visual Studio Code oder PyCharm. ## `uvicorn` aufrufen { #call-uvicorn } Importieren und führen Sie `uvicorn` direkt in Ihrer FastAPI-Anwendung aus: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### Über `__name__ == "__main__"` { #about-name-main }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/uk/docs/tutorial/debugging.md
# Налагодження { #debugging } Ви можете під'єднати дебагер у вашому редакторі коду, наприклад, у Visual Studio Code або PyCharm. ## Виклик `uvicorn` { #call-uvicorn } У вашому FastAPI-додатку імпортуйте та запустіть `uvicorn` безпосередньо: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### Про `__name__ == "__main__"` { #about-name-main }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 3.6K bytes - Click Count (0) -
docs/es/docs/tutorial/debugging.md
# Depuración { #debugging } Puedes conectar el depurador en tu editor, por ejemplo con Visual Studio Code o PyCharm. ## Llama a `uvicorn` { #call-uvicorn } En tu aplicación de FastAPI, importa y ejecuta `uvicorn` directamente: {* ../../docs_src/debugging/tutorial001_py310.py hl[1,15] *} ### Acerca de `__name__ == "__main__"` { #about-name-main }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 2.6K bytes - Click Count (0)