Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for configureProject (0.27 sec)

  1. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            }
    
            @Override
            <T> T withSettings(Function<? super SettingsInternal, T> action) {
                throw new UnsupportedOperationException()
            }
    
            @Override
            void configureProjects() {
                throw new UnsupportedOperationException()
            }
    
            @Override
            <T> T withProjectsConfigured(Function<? super GradleInternal, 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)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            checkConfigureProject('subprojects', listWithAllChildProjects)
        }
    
        def allprojects() {
            expect:
            checkConfigureProject('allprojects', listWithAllProjects)
        }
    
        def configureProjects() {
            expect:
            checkConfigureProject('configure', [project, child1] as Set)
        }
    
        private void checkConfigureProject(String configureMethod, Set projectsToCheck) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top