Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for qsub (0.16 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            throws Exception
        {
            PomTestWrapper pom = buildPom( "dependency-scope/sub" );
    
        }*/
    
        /*MNG- 4010*/
        @Test
        void testDuplicateExclusionsDependency() throws Exception {
            PomTestWrapper pom = buildPom("duplicate-exclusions-dependency/sub");
            assertEquals(1, ((List<?>) pom.getValue("dependencies[1]/exclusions")).size());
        }
    
        /*MNG- 4008*/
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *   <li><b>Module hierarchy:</b> if {@code module-info.class} files are found in sub-directories,
         *       at a deep intentionally restricted to one level, then builds a map of module names found
         *       in the descriptor of each sub-directory.</li>
         * </ul>
         *
         * Otherwise if the given path is a JAR file, then there is a choice:
         * <ul>
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

          <description>Contains the plugins management information for the project.</description>
          <fields>
            <!-- [ jdcasey:06-Mar-2005 ] Added to handle version management, etc. for
              | plugins to be used in sub-projects. -->
            <field>
              <name>pluginManagement</name>
              <version>4.0.0+</version>
              <required>false</required>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 115.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/managed-profile-dependency/pom.xml

      <name>Maven Integration Test :: MNG-4034</name>
      <description>
        Verify that dependencies defined in profiles are subject to the dependency management of the parent.
      </description>
    
      <modules>
        <module>sub</module>
      </modules>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>org.apache.maven.its</groupId>
            <artifactId>maven-core-it-support</artifactId>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/AbstractMavenPluginParametersValidator.java

        }
    
        protected boolean isValueSet(PlexusConfiguration config, ExpressionEvaluator expressionEvaluator) {
            if (config == null) {
                return false;
            }
    
            // there are sub items ... so configuration is declared
            if (config.getChildCount() > 0) {
                return true;
            }
    
            String strValue = config.getValue();
    
            if (strValue == null || strValue.isEmpty()) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

                return stringPart.toString() + digitPart.toString();
            }
        }
    
        /**
         * Represents a version list item. This class is used both for the global item list and for sub-lists (which start
         * with '-(number)' in the version specification).
         */
        private static class ListItem extends ArrayList<Item> implements Item {
            @Override
            public int getType() {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 26K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java

    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    
    import org.apache.maven.execution.ProjectDependencyGraph;
    import org.apache.maven.project.MavenProject;
    
    /**
     * Provides a sub view of another dependency graph.
     *
     */
    class FilteredProjectDependencyGraph implements ProjectDependencyGraph {
    
        private ProjectDependencyGraph projectDependencyGraph;
    
        private Map<MavenProject, ?> whiteList;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java

                    return true;
                }
    
                id = project.getGroupId() + id;
    
                return id.equals(selector);
            }
    
            // relative path, e.g. "sub", "../sub" or "."
            else if (reactorDirectory != null) {
                File selectedProject =
                        new File(new File(reactorDirectory, selector).toURI().normalize());
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

          <artifactId>reloc-aid</artifactId>
          <version>reloc-version</version>
          <message>project-reloc-msg</message>
        </relocation>
      </distributionManagement>
    
      <modules>
        <module>sub</module>
      </modules>
    
      <properties>
        <itProperty>project-property</itProperty>
      </properties>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    &lt;T&gt; to a type. * @param typeFinder A type finder to extract the type */ protected TypeSafeDiagnosingMa(ReflectiveTypeFinder typeFinder) { this.expectedType = typeFinder.findExpectedType(getClass()); } /** * The default constructor for simple sub types */ protected TypeSafeDiagnosingMa() { this(TYPE_FINDER); } @Override @SuppressWarnings("unchecked") public final boolean matches(Object item) { return item != null && expectedType.isInstance(item) && matchesSafely((T) item, new Description.NullDescription());...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
Back to top