Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Bush (0.12 sec)

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