Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for qsub (0.13 sec)

  1. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  2. 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 May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.3K bytes
    - Viewed (0)
  3. 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 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.6K 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 28 03:35:10 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 May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/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 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/profile-plugin-mng-dependencies/pom.xml

        Verify that plugin dependencies defined by plugin management of a parent profile are not lost when the
        parent's main plugin management section is also present.
      </description>
    
      <modules>
        <module>sub</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-class-loader</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactScopeEnum.java

        };
    
        /**
         * scope relationship function. Used by the graph conflict resolution policies
         *
         * @param scope a scope
         * @return true is supplied scope is an inclusive sub-scope of current one.
         */
        public boolean encloses(ArtifactScopeEnum scope) {
            final ArtifactScopeEnum s = checkScope(scope);
    
            // system scope is historic only - and simple
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.2K bytes
    - Viewed (0)
Back to top