Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 83 for stdio (0.19 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/MavenEncCling.java

         */
        public static int main(
                String[] args,
                ClassWorld world,
                @Nullable InputStream stdIn,
                @Nullable OutputStream stdOut,
                @Nullable OutputStream stdErr)
                throws IOException {
            return new MavenEncCling(world).run(args, stdIn, stdOut, stdErr, true);
        }
    
        public MavenEncCling() {
            super();
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 3K bytes
    - Click Count (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/MavenShellCling.java

         */
        public static int main(
                String[] args,
                ClassWorld world,
                @Nullable InputStream stdIn,
                @Nullable OutputStream stdOut,
                @Nullable OutputStream stdErr)
                throws IOException {
            return new MavenShellCling(world).run(args, stdIn, stdOut, stdErr, true);
        }
    
        public MavenShellCling() {
            super();
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 3K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. docs/changelogs/upgrading_to_okhttp_4.md

    fixed you must disable advanced profiling in Android Studio.
    
    ![Disable Advanced Profiling](../assets/images/******@****.***)
    
    
    R8 / ProGuard
    -------------
    
    R8 and ProGuard are both code optimizers for `.class` files.
    
    R8 is the [default optimizer][r8] in Android Studio 3.4 and newer. It works well with all
    releases of OkHttp.
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 16:58:16 GMT 2022
    - 10.9K bytes
    - Click Count (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/MavenUpCling.java

         */
        public static int main(
                String[] args,
                ClassWorld world,
                @Nullable InputStream stdIn,
                @Nullable OutputStream stdOut,
                @Nullable OutputStream stdErr)
                throws IOException {
            return new MavenUpCling(world).run(args, stdIn, stdOut, stdErr, true);
        }
    
        public MavenUpCling() {
            super();
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 3K bytes
    - Click Count (0)
  10. 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)
Back to Top