Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for getLifecycle (0.26 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingContainer.java

        }
    
        @Override
        public TestLogging getLifecycle() {
            return perLevelTestLogging.get(LogLevel.LIFECYCLE);
        }
    
        @Override
        public void setLifecycle(TestLogging logging) {
            perLevelTestLogging.put(LogLevel.LIFECYCLE, logging);
        }
    
        @Override
        public void lifecycle(Action<TestLogging> action) {
            action.execute(getLifecycle());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultDevelocityBuildLifecycleService.java

            //   are not observable from eager configuration blocks, which would anyway be incompatible with
            //   Isolated Projects.
            if (isIsolatedProjects()) {
                gradle.getLifecycle().beforeProject(action::execute);
            } else {
                gradle.allprojects(action);
            }
        }
    
        private boolean isIsolatedProjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 21:44:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLoggingContainer.java

         *
         * @return logging options for lifecycle level
         */
        TestLogging getLifecycle();
    
        /**
         * Sets logging options for lifecycle level.
         *
         * @param logging logging options for lifecycle level
         */
        void setLifecycle(TestLogging logging);
    
        /**
         * Configures logging options for lifecycle level.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/GradleDelegate.kt

            delegate.gradleVersion
    
        override fun getGradleUserHomeDir(): File =
            delegate.gradleUserHomeDir
    
        override fun getGradleHomeDir(): File? =
            delegate.gradleHomeDir
    
        override fun getLifecycle(): GradleLifecycle =
            delegate.lifecycle
    
        override fun getParent(): Gradle? =
            delegate.parent
    
        override fun getRootProject(): Project =
            delegate.rootProject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

                            final Dsl dsl = target.getExtensions().create("dsl", Dsl.class);
                            target.getGradle().getLifecycle().beforeProject(project -> {
                                project.getTasks().register("test", TestTask.class, task -> {
                                    task.getTaskParameter().set(dsl.getParameter());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

                    new DefaultLookup(mockedPlexusContainer));
    
            assertThat(dl.getLifeCycles().get(0).getId(), is("clean"));
            assertThat(dl.getLifeCycles().get(1).getId(), is("default"));
            assertThat(dl.getLifeCycles().get(2).getId(), is("site"));
            assertThat(dl.getLifeCycles().get(3).getId(), is("wrapper"));
            assertThat(dl.getLifeCycles().get(4).getId(), is("etl"));
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java

         *
         * @param lifecycle a lifecycle object.
         */
        public void addLifecycle(Lifecycle lifecycle) {
            getLifecycles().add(lifecycle);
        } // -- void addLifecycle( Lifecycle )
    
        /**
         * Method getLifecycles.
         *
         * @return List
         */
        public java.util.List<Lifecycle> getLifecycles() {
            if (this.lifecycles == null) {
                this.lifecycles = new java.util.ArrayList<Lifecycle>();
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

            // so that they don't interfere with internally defined lifecycles.
    
            Map<String, Lifecycle> phaseToLifecycleMap = new HashMap<>();
    
            for (Lifecycle lifecycle : getLifeCycles()) {
                logger.debug("Lifecycle {}", lifecycle);
    
                for (String phase : lifecycle.getPhases()) {
                    // The first definition wins.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

                    }
                } else {
                    /*
                     * NOTE: This is to provide a migration path for implementors of the legacy API which did not know about
                     * getLifecycles().
                     */
    
                    String[] lifecycleIds = {"default", "clean", "site"};
    
                    for (String lifecycleId : lifecycleIds) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:46:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/LifecycleMapping.java

    import java.util.Map;
    
    /**
     * LifecycleMapping
     */
    public interface LifecycleMapping {
    
        @Deprecated
        String ROLE = LifecycleMapping.class.getName();
    
        Map<String, Lifecycle> getLifecycles();
    
        @Deprecated
        List<String> getOptionalMojos(String lifecycle);
    
        @Deprecated
        Map<String, String> getPhases(String lifecycle);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top