Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for getExecution (0.23 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

            List<PerformanceReportScenarioHistoryExecution> historyExecutions = removeEmptyExecution(history.getExecutions());
            return new PerformanceReportScenario(
                teamCityExecutionsOfSameScenario,
                historyExecutions,
                history instanceof CrossBuildPerformanceTestHistory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

            Map<String, List<String>> goals = new HashMap<>();
            lifecycle.phases().forEach(phase -> phase.plugins()
                    .forEach(plugin -> plugin.getExecutions().forEach(exec -> exec.getGoals()
                            .forEach(goal -> goals.computeIfAbsent(phase.name(), n -> new ArrayList<>())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/canonical/CanonicalProjectBuilderTest.java

            // Goal specific configuration
            // ----------------------------------------------------------------------
    
            List<PluginExecution> executions = plugin.getExecutions();
    
            PluginExecution execution = executions.get(0);
    
            String g0 = execution.getGoals().get(0);
    
            assertEquals("plexus:runtime", g0);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultPluginConfigurationExpander.java

                XmlNode pluginConfiguration = plugin.getConfiguration();
                if (pluginConfiguration != null) {
                    return plugin.withExecutions(map(
                            plugin.getExecutions(),
                            execution -> execution.withConfiguration(
                                    XmlNode.merge(execution.getConfiguration(), pluginConfiguration))));
                } else {
                    return plugin;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

                    Plugin source,
                    boolean sourceDominant,
                    Map<Object, Object> context) {
                List<PluginExecution> src = source.getExecutions();
                if (!src.isEmpty()) {
                    List<PluginExecution> tgt = target.getExecutions();
                    Map<Object, PluginExecution> merged = new LinkedHashMap<>((src.size() + tgt.size()) * 2);
    
                    for (PluginExecution element : tgt) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

                    Plugin source,
                    boolean sourceDominant,
                    Map<Object, Object> context) {
                List<PluginExecution> src = source.getExecutions();
                if (!src.isEmpty()) {
                    List<PluginExecution> tgt = target.getExecutions();
                    Map<Object, PluginExecution> merged = new LinkedHashMap<>((src.size() + tgt.size()) * 2);
    
                    for (PluginExecution element : tgt) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

            return newestFirst;
        }
    
        @Override
        public PerformanceExperiment getExperiment() {
            return experiment;
        }
    
        @Override
        public List<PerformanceTestExecution> getExecutions() {
            return newestFirst.stream().map(KnownBuildSpecificationsPerformanceTestExecution::new).collect(Collectors.toList());
        }
    
        @Override
        public int getScenarioCount() {
            return builds.size();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

                count = count + 1;
    
                validPluginCounts.put(pluginArtifactId, count);
            }
    
            assertNotNull(testPlugin);
    
            List<PluginExecution> executions = testPlugin.getExecutions();
    
            assertEquals(1, executions.size());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

            }
    
            if (plugin != null) {
                PluginExecution pluginExecution =
                        findPluginExecution(mojoExecution.getExecutionId(), plugin.getExecutions());
    
                XmlNode pomConfiguration = null;
    
                if (pluginExecution != null) {
                    pomConfiguration = pluginExecution.getDelegate().getConfiguration();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

                }
            };
        }
    
        @Override
        public PluginExecution getModel() {
            return delegate.getPlugin().getExecutions().stream()
                    .filter(pe -> Objects.equals(pe.getId(), getExecutionId()))
                    .findFirst()
                    .map(org.apache.maven.model.PluginExecution::getDelegate)
                    .orElse(null);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top