Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for getExecution (0.64 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultLifecycleBindingsInjector.java

            Plugin cur = plugins.putIfAbsent(plugin, plugin);
            if (cur != null) {
                Map<String, PluginExecution> execs = new LinkedHashMap<>();
                cur.getExecutions().forEach(e -> execs.put(e.getId(), e));
                plugin.getExecutions().forEach(e -> {
                    int i = 0;
                    String id = e.getId();
                    while (execs.putIfAbsent(id, e.withId(id)) != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/management/DefaultPluginManagementInjector.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 : src) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/EmptyPerformanceTestHistory.java

        }
    
        @Override
        public PerformanceExperiment getExperiment() {
            return experiment;
        }
    
        @Override
        public List<? extends PerformanceTestExecution> getExecutions() {
            return ImmutableList.of();
        }
    
        @Override
        public int getScenarioCount() {
            return 0;
        }
    
        @Override
        public List<String> getScenarioLabels() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPluginManagementInjector.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 : src) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultPluginConfigurationExpander.java

            for (Plugin plugin : plugins) {
                XmlNode pluginConfiguration = plugin.getDelegate().getConfiguration();
    
                if (pluginConfiguration != null) {
                    for (PluginExecution execution : plugin.getExecutions()) {
                        XmlNode executionConfiguration = execution.getDelegate().getConfiguration();
                        executionConfiguration = XmlNode.merge(executionConfiguration, pluginConfiguration);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

        PerformanceExperiment getExperiment();
    
        /**
         * The results of all executions of this performance test, ordered from most recent to least recent.
         */
        List<? extends PerformanceTestExecution> getExecutions();
    
        /**
         * Returns the number of scenarios for this performance test.
         */
        int getScenarioCount();
    
        /**
         * Returns the display names for the scenarios of this performance test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionGraphRenderer.java

    public interface PerformanceExecutionGraphRenderer {
        default List<ExecutionGraph> getGraphs(PerformanceTestHistory history) {
            List<PerformanceTestExecution> executions = history.getExecutions()
                .stream()
                .filter(this::sameCommit)
                .filter(this::hasTwoDataLines)
                .collect(toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

                    }
    
                    if (mojo.getDependencies() != null) {
                        plugin.setDependencies(mojo.getDependencies());
                    }
                    plugin.getExecutions().add(execution);
                }
            }
        }
    
        private GoalSpec parseGoalSpec(String goalSpec) {
            GoalSpec gs = new GoalSpec();
    
            String[] p = goalSpec.trim().split(":");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                    if (existing != null) {
                        if (version == null) {
                            version = existing.getVersion();
                        }
                        execs.addAll(existing.getExecutions());
                        deps.addAll(existing.getDependencies());
                    }
    
                    PluginExecution execution = PluginExecution.newBuilder()
                            .id(getExecutionId(existing, goal))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            PrintWriter out = new PrintWriter(output);
            List<? extends PerformanceTestExecution> sortedResults = Lists.reverse(testHistory.getExecutions());
    
            List<ExecutionLabel> executionLabels = sortedResults.stream().map(ExecutionLabel::new).collect(Collectors.toList());
            List<ExecutionData> totalTimeData = testHistory.getScenarioLabels()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top