Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for reverse (0.18 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/OperatingSystemProfileActivator.java

            return reverse != result;
        }
    
        private boolean determineArchMatch(String expectedArch, String actualArch) {
            String test = expectedArch;
            boolean reverse = false;
    
            if (test.startsWith("!")) {
                reverse = true;
                test = test.substring(1);
            }
    
            boolean result = actualArch.equals(test);
    
            return reverse != result;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/profiles/activation/JdkPrefixProfileActivator.java

                }
            }
    
            boolean reverse = false;
    
            if (jdk.startsWith("!")) {
                reverse = true;
                jdk = jdk.substring(1);
            }
    
            if (getJdkVersion().startsWith(jdk)) {
                return !reverse;
            } else {
                return reverse;
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 3K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodePointer.java

        public void setValue(Object value) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public NodeIterator childIterator(NodeTest test, boolean reverse, NodePointer startWith) {
            return new Xpp3DomNodeIterator(this, test, reverse, startWith);
        }
    
        @Override
        public NodeIterator attributeIterator(QName qname) {
            return new Xpp3DomAttributeIterator(this, qname);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

        private int filteredIndex;
    
        private XmlNode child;
    
        private int position;
    
        public Xpp3DomNodeIterator(NodePointer parent, NodeTest test, boolean reverse, NodePointer startWith) {
            this.parent = parent;
            this.node = (XmlNode) parent.getNode();
            this.children = this.node.getChildren();
            if (startWith != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/profiles/activation/OperatingSystemProfileActivator.java

        }
    
        private boolean determineVersionMatch(String version) {
            String test = version;
            boolean reverse = false;
    
            if (test.startsWith("!")) {
                reverse = true;
                test = test.substring(1);
            }
    
            boolean result = Os.OS_VERSION.equals(test);
    
            if (reverse) {
                return !result;
            } else {
                return result;
            }
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:01:36 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

    import org.eclipse.aether.resolution.ArtifactRequest;
    import org.eclipse.aether.util.artifact.ArtifactIdUtils;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A class building reverse tree using {@link CollectStepData} trace data provided in {@link RepositoryEvent}
     * events fired during collection.
     *
     * @since 3.9.0
     */
    class ReverseTreeRepositoryListener extends AbstractRepositoryListener {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                    acquiredAggregatorLock = null;
                    acquiredProjectLock = null;
                }
            }
    
            @Override
            public void close() {
                // release the lock in the reverse order of the acquisition
                if (acquiredProjectLock != null) {
                    acquiredProjectLock.unlock();
                }
                if (acquiredAggregatorLock != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         *
         * @since 3.9.0
         */
        private static final String MAVEN_REPO_LOCAL_TAIL = "maven.repo.local.tail";
    
        /**
         * User property for reverse dependency tree. If enabled, Maven will record ".tracking" directory into local
         * repository with "reverse dependency tree", essentially explaining WHY given artifact is present in local
         * repository.
         * Default: {@code false}, will not record anything.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/consumer/simple/simple-parent/pom.xml

      <modules>
        <module>simple-weather</module>
        <module>simple-webapp</module>
    
        <!-- On purpose at the end, project graph is responsible for ordering -->
        <!-- Build/consumer should not be effected by reverse order -->
        <module>simple-testutils</module>
        <module>utils-parent</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    static boolean isAlphanumericSpace(String); public static boolean isNumeric(String); public static boolean isNumericSpace(String); public static String defaultString(Object); public static String defaultString(Object, String); public static String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String,...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
Back to top