- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 131 for virtual (0.03 sec)
-
docs/en/docs/virtual-environments.md
# Virtual Environments { #virtual-environments } When you work in Python projects you probably should use a **virtual environment** (or a similar mechanism) to isolate the packages you install for each project. /// info If you already know about virtual environments, how to create them and use them, you might want to skip this section. ๐ค /// /// tip A **virtual environment** is different than an **environment variable**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0) -
docs/ja/docs/virtual-environments.md
$ deactivate // Activate the virtual environment in prisoner-of-azkaban/.venv ๐ $ source .venv/bin/activate // Now when you run python, it will find the package sirius installed in this virtual environment โจ $ python main.py I solemnly swear ๐บ ``` </div> ## ไปฃๆฟๆๆฎต
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Wed Mar 19 12:22:33 UTC 2025 - 27.8K bytes - Viewed (0) -
docs/ko/docs/virtual-environments.md
# ๊ฐ์ ํ๊ฒฝ Python ํ๋ก์ ํธ๋ฅผ ์์ ํ ๋๋ **๊ฐ์ ํ๊ฒฝ** (๋๋ ์ด์ ์ ์ฌํ ๋๊ตฌ)์ ์ฌ์ฉํ๋ ๊ฒ์ด ์ข์ต๋๋ค. ๊ฐ ํ๋ก์ ํธ ๋ง๋ค ์ค์นํ๋ ํจํค์ง๋ฅผ ๋ถ๋ฆฌํ์ฌ ๊ด๋ฆฌํ ์ ์์ต๋๋ค. /// info | ์ ๋ณด ์ด๋ฏธ ๊ฐ์ ํ๊ฒฝ์ ๋ํด ์ ์๊ณ ์๋ค๋ฉด, ์ด ์น์ ์ ๊ฑด๋ ๋ฐ์ด๋ ๊ด์ฐฎ์ต๋๋ค. ๐ค /// /// tip | ํ **๊ฐ์ ํ๊ฒฝ(Virtual Environment)** ์ **ํ๊ฒฝ ๋ณ์(Environment Variable)** ์ ๋ค๋ฆ ๋๋ค. **ํ๊ฒฝ ๋ณ์**๋ ์์คํ ์ ์กด์ฌํ๋ฉฐ, ํ๋ก๊ทธ๋จ์ด ์ฌ์ฉํ ์ ์๋ ๋ณ์์ ๋๋ค. **๊ฐ์ ํ๊ฒฝ**์ ๋ช๋ช ํ์ผ๋ก ๊ตฌ์ฑ๋ ํ๋์ ๋๋ ํฐ๋ฆฌ์ ๋๋ค. /// /// info | ์ ๋ณด ์ด ํ์ด์ง์์๋ **๊ฐ์ ํ๊ฒฝ**์ ์ฌ์ฉ ๋ฐฉ๋ฒ๊ณผ ์๋ ๋ฐฉ์์ ์ค๋ช ํฉ๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:10:41 UTC 2025 - 25.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
}, page); } /** * Gets the base path for virtual host based on the virtual host key and page. * * @param s The virtual host key * @param page The HTML page * @return The base path for the virtual host */ protected String getVirtualHostBasePath(final String s, final HtmlNext page) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return relatedQueryMap.size(); } /** * Extracts the virtual host key from a RelatedQuery entity. * If the virtual host is blank or null, returns an empty string. * * @param entity the RelatedQuery entity to extract the host key from * @return the virtual host key, or empty string if blank or null */ protected String getHostKey(final RelatedQuery entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
} /** * Extracts the virtual host key from a RelatedContent entity. * If the virtual host is blank or null, returns an empty string. * This key is used to organize related content by virtual host. * * @param entity the RelatedContent entity to extract the host key from * @return the virtual host key, or empty string if not specified */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
docs/en/docs/tutorial/request-forms-and-files.md
/// info To receive uploaded files and/or form data, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>. Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example: ```console $ pip install python-multipart ``` /// ## Import `File` and `Form` { #import-file-and-form }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 1.5K bytes - Viewed (0) -
docs/en/docs/environment-variables.md
<div class="termy"> ```console $ C:\opt\custompython\bin\python ``` </div> //// This information will be useful when learning about [Virtual Environments](virtual-environments.md){.internal-link target=_blank}. ## Conclusion { #conclusion } With this you should have a basic understanding of what **environment variables** are and how to use them in Python.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.1K bytes - Viewed (0) -
docs/en/docs/deployment/manually.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
mockBhv.setTestData(testData); int count = relatedQueryHelper.load(); assertEquals(1, count); // One virtual host key (empty) String[] results = relatedQueryHelper.getRelatedQueries("java"); assertEquals(3, results.length); assertEquals("programming", results[0]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0)