Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for Hoolehan (0.48 sec)

  1. maven-model-builder/pom.xml

                  <exclude>org.apache.maven.model.resolution.ModelResolver#addRepository(org.apache.maven.api.model.Repository,boolean):METHOD_NEW_DEFAULT</exclude>
                  <exclude>org.apache.maven.model.resolution.ModelResolver#resolveModel(org.apache.maven.api.model.Parent,java.util.concurrent.atomic.AtomicReference):METHOD_NEW_DEFAULT</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            assertFalse(enforceVersion("[2.0,2.0.3]", actualVersion));
            assertTrue(enforceVersion("[2.0,2.0.5]", actualVersion));
            assertFalse(enforceVersion("[2.0,2.0.5)", actualVersion));
        }
    
        public boolean enforceVersion(String requiredVersionRange, ArtifactVersion actualVersion)
                throws InvalidVersionSpecificationException {
            VersionRange vr = null;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 44.3K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    AbstractActiveList(); protected void AbstractActiveList(org.codehaus.plexus.PlexusContainer, String); public boolean add(Object); public void add(int, Object); public boolean addAll(java.util.Collection); public boolean addAll(int, java.util.Collection); public void clear(); public boolean remove(Object); public Object remove(int); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); public Object set(int, Object); protected final java.util.List checkedGetList()...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 15.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        private File localRepositoryPath;
    
        private boolean offline = false;
    
        private boolean interactiveMode = true;
    
        private boolean cacheTransferError = false;
    
        private boolean cacheNotFound = false;
    
        private boolean ignoreMissingArtifactDescriptor = true;
    
        private boolean ignoreInvalidArtifactDescriptor = true;
    
        private boolean ignoreTransitiveRepositories;
    
        private List<Proxy> proxies;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    fatal(Object); public void fatal(Object, Throwable); public java.util.logging.Logger getLogger(); public void info(Object); public void info(Object, Throwable); public boolean isDebugEnabled(); public boolean isErrorEnabled(); public boolean isFatalEnabled(); public boolean isInfoEnabled(); public boolean isTraceEnabled(); public boolean isWarnEnabled(); public void trace(Object); public void trace(Object, Throwable); public void warn(Object); public void warn(Object, Throwable); } org/apache/common...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // Interactive
        MavenExecutionRequest setInteractiveMode(boolean interactive);
    
        boolean isInteractiveMode();
    
        // Offline
        MavenExecutionRequest setOffline(boolean offline);
    
        boolean isOffline();
    
        boolean isCacheTransferError();
    
        MavenExecutionRequest setCacheTransferError(boolean cacheTransferError);
    
        boolean isCacheNotFound();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    org.hamcrest.BaseMatcher { private final Object expectedValue; public void IsEqual(Object); public boolean matches(Object); public void describeTo(org.hamcrest.Description); private static boolean areEqual(Object, Object); private static boolean areArraysEqual(Object, Object); private static boolean areArrayLengthsEqual(Object, Object); private static boolean areArrayElementsEqua(Object, Object); private static boolean isArray(Object); public static org.hamcrest.Matcher equalTo(Object); } org/hamcrest/core/IsInstanceOf.class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 44K bytes
    - Viewed (0)
  8. src/mdo/reader.vm

         * any.
         * @return boolean
         */
        private boolean getBooleanValue(String s, String attribute, XMLStreamReader parser, boolean defaultValue)
            throws XMLStreamException {
            if (s != null && s.length() != 0) {
                return Boolean.valueOf(s).booleanValue();
            }
            return defaultValue;
        } //-- boolean getBooleanValue(String, String, XMLStreamReader, String)
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

        private Model fileModel;
    
        private Path pomPath;
    
        private ModelSource modelSource;
    
        private int validationLevel = VALIDATION_LEVEL_STRICT;
    
        private boolean processPlugins;
    
        private boolean twoPhaseBuilding;
    
        private boolean locationTracking;
    
        private List<Profile> profiles;
    
        private List<String> activeProfileIds;
    
        private List<String> inactiveProfileIds;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/mdo/model.vm

          #end
          #if ( $type == 'boolean' )
            Boolean ${field.name};
          #elseif ( $type == 'int' )
            Integer ${field.name};
          #else
            ${type} ${field.name};
        #end
        #end
        #if ( ! $class.superClass && $locationTracking )
            Map<Object, InputLocation> locations;
        #end
    
            Builder(boolean withDefaults) {
        #if ( $class.superClass )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top