Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for setExecutions (0.38 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

        /**
         * Set the goals to execute within the phase.
         *
         * @param executions a executions object.
         */
        public void setExecutions(java.util.List<Execution> executions) {
            this.executions = executions;
        } // -- void setExecutions( java.util.List )
    
        /**
         * Set the ID of this phase, e.g.,
         * <code>generate-sources</code>.
         *
         * @param id a id object.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    MojoNotFoundException.class,
                    () -> getExecutions(calculateExecutionPlan(session, "resources:")),
                    "expected a MojoNotFoundException");
            assertEquals("", e.getGoal());
    
            e = assertThrows(
                    MojoNotFoundException.class,
                    () -> getExecutions(calculateExecutionPlan(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessDetectionPerformanceExecutionDataProvider.java

            List<? extends PerformanceTestExecution> executionsOfSameCommit = history.getExecutions().stream().filter(e -> e.getVcsCommits().contains(commitId)).collect(toList());
            List<? extends PerformanceTestExecution> currentExecutions = executionsOfSameCommit.isEmpty()
                ? history.getExecutions().stream().limit(3).collect(toList())
                : executionsOfSameCommit;
            return new PerformanceReportScenario(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                th().text("Daemon").end();
                end();
                final int executionsLen = testHistory.getExecutions().size();
                for (int i = 0; i < executionsLen; i++) {
                    PerformanceTestExecution results = testHistory.getExecutions().get(i);
                    tr();
                    id("result" + results.getExecutionId());
                    renderDateAndLink(results);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top