Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for configureFully (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/TaskPathProjectEvaluator.java

        }
    
        @Override
        public void configure(ProjectInternal project) {
            project.getOwner().ensureConfigured();
        }
    
        @Override
        public void configureFully(ProjectState projectState) {
            projectState.ensureConfigured();
            if (cancellationToken.isCancellationRequested()) {
                throw new BuildCancelledException();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 20 01:17:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/ProjectConfigurer.java

        /**
         * Configures the given project.
         */
        void configure(ProjectInternal project);
    
        /**
         * Configures the owned project, discovers tasks and binds model rules.
         */
        void configureFully(ProjectState projectState);
    
        /**
         * Configures the given project and all its sub-projects.
         */
        void configureHierarchy(ProjectInternal project);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top