Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for Walter (0.17 sec)

  1. apache-maven/src/assembly/maven/lib/jansi-native/README.txt

    See here [1] on how to compile for your platform and here [2] how libraries
    follow Jansi's directory and filename conventions.
    
    [1] https://github.com/fusesource/jansi/tree/master/src/main/native
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 486 bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

            </includes>
            <excludes>
              <exclude>test.excluded</exclude>
            </excludes>
          </testResource>
        </testResources>
        <filters>
          <filter>src/main/filter/it.properties</filter>
        </filters>
    
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-build</artifactId>
    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)
  3. maven-core/src/test/resources/consumer/simple/pom.xml

      <version>0.9-${changelist}-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Multi Chapter Parent Project</name>
    
      <!-- Optimized from https://github.com/sonatype/maven-example-en/tree/master/examples/ch-multi -->
      <modules>
        <module>simple-parent</module>
      </modules>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                Map<?, ?> map = (Map) session.getCache().get(session, DefaultModelCache.class.getName());
                List<String> paths = map.keySet().stream()
                        .map(Object::toString)
                        .filter(s -> s.startsWith("SourceCacheKey"))
                        .map(s -> s.substring("SourceCacheKey[location=".length(), s.indexOf(", tag")))
                        .sorted()
                        .distinct()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzer.java

            if (hasNoSuccess) {
                return Optional.empty();
            }
    
            List<String> remainingProjects = sortedProjects.stream()
                    .filter(project -> result.getBuildSummary(project) == null
                            || result.getBuildSummary(project) instanceof BuildFailure)
                    .map(project -> project.getGroupId() + ":" + project.getArtifactId())
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationValuePreprocessor.java

         * unmarshalled into that type. The preprocessor is not required to perform any type conversion but should rather
         * filter out incompatible values from its result.
         *
         * @param value The configuration value to preprocess, must not be {@code null}.
         * @param type The target type of the value, may be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/DefaultArtifactTransformationManager.java

            this.artifactTransformations = Stream.of("release", "latest", "snapshot")
                    .map(artifactTransformations::get)
                    .filter(Objects::nonNull)
                    .collect(Collectors.toList());
        }
    
        public void transformForResolve(Artifact artifact, RepositoryRequest request)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelValidator.java

            // do nothing
        }
    
        /**
         * Checks the specified (raw) model for missing or invalid values. The raw model is the file model + buildpom filter
         * transformation and has not been subjected to inheritance, interpolation or profile/default injection.
         *
         * @param model The model to validate, must not be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator.java

                    && (rootProject.getDefaultGoal() != null
                            && !rootProject.getDefaultGoal().isEmpty())) {
                tasks = Stream.of(rootProject.getDefaultGoal().split("\\s+"))
                        .filter(g -> !g.isEmpty())
                        .collect(Collectors.toList());
            }
    
            return calculateTaskSegments(session, tasks);
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/graph/ProjectSelector.java

            }
        }
    
        private Optional<MavenProject> findOptionalProjectBySelector(
                List<MavenProject> projects, File reactorDirectory, String selector) {
            return projects.stream()
                    .filter(project -> isMatchingProject(project, selector, reactorDirectory))
                    .findFirst();
        }
    
        File getBaseDirectoryFromRequest(MavenExecutionRequest request) {
    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)
Back to top