- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 125 for program (0.06 sec)
-
docs/en/docs/deployment/manually.md
## Server Machine and Server Program { #server-machine-and-server-program } There's a small detail about names to keep in mind. 💡 The word "**server**" is commonly used to refer to both the remote/cloud computer (the physical or virtual machine) and also the program that is running on that machine (e.g. Uvicorn).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.9K bytes - Viewed (0) -
docs/en/docs/deployment/concepts.md
--- Then the next concepts to consider are all about the program running your actual API (e.g. Uvicorn). ## Program and Process { #program-and-process } We will talk a lot about the running "**process**", so it's useful to have clarity about what it means, and what's the difference with the word "**program**". ### What is a Program { #what-is-a-program } The word **program** is commonly used to describe many things:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 18.6K bytes - Viewed (0) -
docs/bn/docs/environment-variables.md
* `/bin` * `/usr/sbin` * `/sbin` //// //// tab | উইন্ডোজ ```plaintext C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32 ``` তারমানে হলো সিস্টেম প্রোগ্রামগুলোকে নিচের ডিরেক্টরিগুলোতে খুঁজবেঃ * `C:\Program Files\Python312\Scripts` * `C:\Program Files\Python312` * `C:\Windows\System32` ////
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Jun 05 08:15:56 UTC 2025 - 17.2K bytes - Viewed (0) -
docs/zh-hant/docs/environment-variables.md
- `/usr/bin` - `/bin` - `/usr/sbin` - `/sbin` //// //// tab | Windows ```plaintext C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32 ``` 這意味著系統應該在以下目錄中查找程式: - `C:\Program Files\Python312\Scripts` - `C:\Program Files\Python312` - `C:\Windows\System32` //// 當你在終端機中輸入一個**指令**時,作業系統會在 `PATH` 環境變數中列出的**每個目錄**中**查找**程式。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 12:17:55 UTC 2024 - 8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/zip/ZipFileUtilTest.java
* @author koichik */ public class ZipFileUtilTest extends TestCase { /** * @throws Exception */ public void testToJarFilePath() throws Exception { final URL url = new URL(null, "zip:/Program Files/foo.zip!/", new URLStreamHandler() { @Override protected void parseURL(final URL u, final String spec, final int start, final int limit) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.6K bytes - Viewed (0) -
docs/ko/docs/environment-variables.md
- `/bin` - `/usr/sbin` - `/sbin` //// //// tab | Windows ```plaintext C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32 ``` 이는 시스템이 다음 디렉토리에서 프로그램을 찾아야 함을 의미합니다: - `C:\Program Files\Python312\Scripts` - `C:\Program Files\Python312` - `C:\Windows\System32` ////
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 8.7K bytes - Viewed (0) -
docs/vi/docs/environment-variables.md
* `/bin` * `/usr/sbin` * `/sbin` //// //// tab | Windows ```plaintext C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32 ``` Điều này có nghĩa là hệ thống sẽ tìm kiếm các chương trình trong các thư mục: * `C:\Program Files\Python312\Scripts` * `C:\Program Files\Python312` * `C:\Windows\System32` ////
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 07 22:17:13 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/ru/docs/environment-variables.md
* `/bin` * `/usr/sbin` * `/sbin` //// //// tab | Windows ```plaintext C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32 ``` Это означает, что система должна искать программы в каталогах: * `C:\Program Files\Python312\Scripts` * `C:\Program Files\Python312` * `C:\Windows\System32` ////
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Oct 15 11:38:57 UTC 2024 - 12.5K bytes - Viewed (0) -
docs/ja/docs/environment-variables.md
* `/usr/bin` * `/bin` * `/usr/sbin` * `/sbin` //// //// tab | Windows ```plaintext C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32 ``` これは、OSはプログラムを見つけるために以下のディレクトリを探す、ということを意味します: * `C:\Program Files\Python312\Scripts` * `C:\Program Files\Python312` * `C:\Windows\System32` ////
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jan 27 15:39:04 UTC 2025 - 9.4K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
A `requirements.txt` with some packages could look like: ```requirements.txt fastapi[standard]==0.113.0 pydantic==2.8.0 ``` /// ## Run Your Program { #run-your-program } After you activated the virtual environment, you can run your program, and it will use the Python inside of your virtual environment with the packages you installed there. <div class="termy"> ```console $ python main.py
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0)