Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Bush (0.25 sec)

  1. .github/workflows/maven_build_itself.yml

    # specific language governing permissions and limitations
    # under the License.
    
    name: Can Maven build itself
    
    on: [push, pull_request]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push or pull request from forked repo
        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. .github/workflows/maven.yml

    # specific language governing permissions and limitations
    # under the License.
    
    name: Java CI
    
    on: [push, pull_request]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push or pull request from forked repo
        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

            items = new ListItem();
    
            version = version.toLowerCase(Locale.ENGLISH);
    
            ListItem list = items;
    
            Deque<Item> stack = new ArrayDeque<>();
            stack.push(list);
    
            boolean isDigit = false;
    
            boolean isCombination = false;
    
            int startIndex = 0;
    
            for (int i = 0; i < version.length(); i++) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 26K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                return new ActivationFrame(property, parent.map(child));
            }
    
            @Override
            public Activation transformActivation(Activation target) {
                stk.push(new ActivationFrame("activation", Optional.of(target)));
                try {
                    return super.transformActivation(target);
                } finally {
                    stk.pop();
                }
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top