- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for deactivate (0.06 sec)
-
docs/en/docs/virtual-environments.md
/// tip It's easy to activate one virtual environment, get one Python, and then **go to another project**. And the second project **wouldn't work** because you are using the **incorrect Python**, from a virtual environment for another project. It's useful being able to check what `python` is being used. ๐ค /// ## Why Deactivate a Virtual Environment { #why-deactivate-a-virtual-environment }
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/ko/docs/virtual-environments.md
<div class="termy"> ```console $ cd ~/code/prisoner-of-azkaban // ์ด์ ๋๋ ํฐ๋ฆฌ์ ์์ ํ์ ์์ด, ์ด๋์๋ ๊ฐ์ ํ๊ฒฝ์ ๋นํ์ฑํํ ์ ์์ต๋๋ค. ๋ค๋ฅธ ํ๋ก์ ํธ ๋๋ ํฐ๋ฆฌ๋ก ์ด๋ํ ํ์๋ ๊ด์ฐฎ์์ ๐ $ deactivate // prisoner-of-azkaban/.venv ๊ฐ์ ํ๊ฒฝ์ ํ์ฑํํฉ๋๋ค ๐ $ source .venv/bin/activate // ์ด์ python์ ์คํํ๋ฉด, ์ด ๊ฐ์ ํ๊ฒฝ์ ์ค์น๋ sirius ํจํค์ง๋ฅผ ์ฐพ๊ฒ ๋ฉ๋๋ค โจ $ python main.py ๋ชป๋ ์ง์ ๊พธ๋ฏธ๊ณ ์์์ ์์ํ ๋งน์ธํฉ๋๋ค.๐ง ImportError๋ ์ด์ ์์ต๋๋ค. ๐บ ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:10:41 UTC 2025 - 25.8K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
<class java.clone="deep"> <name>ActivationProperty</name> <version>1.0.0+</version> <description> This is the property specification used to activate a profile. If the value field is empty, then the existence of the named property will activate the profile, otherwise it does a case-sensitive match against the property value as well. </description> <fields> <field>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0) -
.github/workflows/stale-pr.yml
runs-on: ubuntu-latest steps: - uses: actions/stale@v10 with: operations-per-run: 50 ascending: true exempt-all-milestones: true # ISSUES (deactivated) ---------------------------------------------- # This workflow should touch no issues, so times are set to -1 # (see actions/stale documentation for the behavior) days-before-issue-stale: -1
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Sep 04 22:13:29 UTC 2025 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java
*/ @Override public void explicitlyDeactivate(String profileId) { if (!deactivatedIds.contains(profileId)) { logger.debug("Profile with id: '" + profileId + "' has been explicitly deactivated."); deactivatedIds.add(profileId); } } /* (non-Javadoc) * @see org.apache.maven.profiles.ProfileManager#explicitlyDeactivate(java.util.List) */ @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.9K bytes - Viewed (0) -
docs/en/docs/tutorial/request-forms-and-files.md
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) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java
boolean reverseName = false; if (name == null) { throw new ProfileActivationException( "The property name is required to activate the profile '" + profile.getId() + "'"); } if (name.startsWith("!")) { reverseName = true; name = name.substring(1); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.3K bytes - Viewed (0) -
docs/en/docs/tutorial/testing.md
To use `TestClient`, first install <a href="https://www.python-httpx.org" class="external-link" target="_blank">`httpx`</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 httpx ``` /// Import `TestClient`. Create a `TestClient` by passing your **FastAPI** application to it.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 6.6K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java
*/ @Nonnull Optional<Boolean> updateSnapshots(); /** * Returns the list of profiles to activate. * * @return an {@link Optional} containing the list of profile names to activate, or empty if not specified */ @Nonnull Optional<List<String>> activatedProfiles(); /** * Indicates whether Maven should suppress SNAPSHOT updates.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 8K bytes - Viewed (0) -
docs/en/docs/tutorial/request-form-models.md
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 ``` /// /// note This is supported since FastAPI version `0.113.0`. ๐ค ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.2K bytes - Viewed (0)