Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getConfigurationOperation (0.29 sec)

  1. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProfileEventAdapter.java

            buildProfile.getProjectProfile(project.getPath()).getConfigurationOperation().setStart(now);
        }
    
        @Override
        public void afterEvaluate(Project project, ProjectState state) {
            long now = clock.getCurrentTime();
            ProjectProfile projectProfile = buildProfile.getProjectProfile(project.getPath());
            projectProfile.getConfigurationOperation().setFinish(now);
        }
    
        // TaskListenerInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProjectProfile.java

         */
        public String getPath() {
            return projectPath;
        }
    
        /**
         * Returns the configuration time of this project.
         */
        public ContinuousOperation getConfigurationOperation() {
            return configurationOperation;
        }
    
        @Override
        public String toString() {
            return projectPath;
        }
    
        @Override
        public String getDescription() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

            List<Operation> operations = new ArrayList<>();
            for (ProjectProfile projectProfile : projects.values()) {
                operations.add(projectProfile.getConfigurationOperation());
            }
            operations = CollectionUtils.sort(operations, Operation.slowestFirst());
            return new CompositeOperation<>(operations);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top