Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for loadSettings (0.13 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

            when:
            expectSettingsBuiltWithFailure(failure)
    
            def controller = this.controller()
            controller.loadSettings()
    
            then:
            def t = thrown RuntimeException
            t == failure
    
            when:
            controller.loadSettings()
    
            then:
            def t2 = thrown RuntimeException
            t2 == failure
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/AbstractBuildState.java

        protected BuildLifecycleController getBuildController() {
            return buildLifecycleController.get();
        }
    
        @Override
        public void ensureProjectsLoaded() {
            getBuildController().loadSettings();
        }
    
        @Override
        public boolean isProjectsLoaded() {
            return getProjectStateRegistry().findProjectsFor(getBuildIdentifier()) != null;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

         */
        GradleInternal getGradle();
    
        /**
         * Configures the settings for this build, if not already available.
         * Can be called multiple times.
         */
        void loadSettings();
    
        /**
         * Runs the given action against the loaded settings for this build.
         * This may fail with an error, if this build is loaded from cache rather than configured.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            // - maybe split the states into one for the build model and one for the task graph.
            state.assertNotInState(State.Finished);
            return gradle;
        }
    
        @Override
        public void loadSettings() {
            state.notInState(State.Finished, modelController::getLoadedSettings);
        }
    
        @Override
        public <T> T withSettings(Function<? super SettingsInternal, T> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

                    }
                }
            }
    
            @Override
            GradleInternal getGradle() {
                throw new UnsupportedOperationException()
            }
    
            @Override
            void loadSettings() {
                throw new UnsupportedOperationException()
            }
    
            @Override
            <T> T withSettings(Function<? super SettingsInternal, T> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top