Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. .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)
  2. 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)
Back to top