Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FragmentedOperation (0.38 sec)

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

     */
    
    package org.gradle.profile;
    
    import java.util.Collection;
    import java.util.HashSet;
    
    public class FragmentedOperation extends Operation {
        private final String description;
        private final Collection<ContinuousOperation> children = new HashSet<>();
    
        public FragmentedOperation(String description) {
            this.description = description;
        }
    
        @Override
        public long getElapsedTime() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

            return new CompositeOperation<>(profiles);
        }
    
        public FragmentedOperation getTransformProfile(String transformDescription) {
            FragmentedOperation profile = transforms.get(transformDescription);
            if (profile == null) {
                profile = new FragmentedOperation(transformDescription);
                transforms.put(transformDescription, profile);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProfileEventAdapter.java

            long now = clock.getCurrentTime();
            String transformDescription = subject.getDisplayName() + " with " + transform.getDisplayName();
            FragmentedOperation transformProfile = buildProfile.getTransformProfile(transformDescription);
            currentTransform.set(transformProfile.start(now));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top