Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _deactivate (0.04 sec)

  1. docs/en/docs/virtual-environments.md

    You normally have to do this only **once**, when you create the virtual environment.
    
    ///
    
    ## Deactivate the Virtual Environment { #deactivate-the-virtual-environment }
    
    Once you are done working on your project you can **deactivate** the virtual environment.
    
    <div class="termy">
    
    ```console
    $ deactivate
    ```
    
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  2. .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)
  3. 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)
  4. docs/ko/docs/virtual-environments.md

    /// tip | 팁
    
    이 설정은 보통 가상 환경을 **처음 만들었을 때 한 번만** 해주면 됩니다.
    
    ///
    
    ## 가상 환경 비활성화
    
    프로젝트 작업이 끝났다면, 가상 환경을 **비활성화**할 수 있습니다.
    
    <div class="termy">
    
    ```console
    $ deactivate
    ```
    
    </div>
    
    이렇게 하면 이후에 `python` 명령어를 실행했을 때, 가상 환경의 Python이나 그 안에 설치된 패키지들을 사용하지 않게 됩니다.
    
    ## 이제 작업할 준비가 되었습니다
    
    이제 프로젝트 작업을 시작할 준비가 완료되었습니다.
    
    
    /// tip | 팁
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:10:41 UTC 2025
    - 25.8K bytes
    - Viewed (0)
Back to top