Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getWorkType (0.49 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteDeferredWorkProgressDetails.java

     */
    public interface ExecuteDeferredWorkProgressDetails {
    
        /**
         * Type of work being executed.
         * <p>
         * @since 8.7
         * @see ExecuteWorkBuildOperationType.Details#getWorkType()
         */
        @Nullable
        String getWorkType();
    
        /**
         * The opaque identity of the transform execution.
         * <p>
         * Unique within the current build tree.
         *
         * @since 8.7
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

                },
                BuildOperationDescriptor
                    .displayName("Identifying work")
                    .details(new Operation.Details() {
                        @Override
                        public Class<?> getWorkType() {
                            return workType;
                        }
                    })
            );
        }
    
        @Nonnull
        private IdentityContext createIdentityContextInternal(UnitOfWork work, C context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteStep.java

                        .displayName("Executing " + work.getDisplayName())
                        .details(new Operation.Details() {
                            @Override
                            public Class<?> getWorkType() {
                                return workType;
                            }
    
                            @Override
                            public UnitOfWork.Identity getIdentity() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/CacheManifest.java

            this.identity = identity;
            this.propertyManifests = propertyManifests;
        }
    
        public OriginMetadata getOriginMetadata() {
            return originMetadata;
        }
    
        public String getWorkType() {
            return workType;
        }
    
        public String getIdentity() {
            return identity;
        }
    
        public Map<String, List<ManifestEntry>> getPropertyManifests() {
            return propertyManifests;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityCacheStep.java

                this.workType = workType;
                this.identity = identity;
                this.originMetadata = originMetadata;
            }
    
            @Nullable
            @Override
            public String getWorkType() {
                return workType;
            }
    
            @Override
            public String getIdentity() {
                return identity.getUniqueId();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:30:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             *     <li>{@code null} - work type is not classified</li>
             *     <li>{@code TRANSFORM} - execution of an artifact transform</li>
             * </ul>
             */
            @Nullable
            String getWorkType();
    
            /**
             * The identity of the executed unit of work.
             * <p>
             * The identity needs to be unique per build tree, so consumers of this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

            public ExecuteWorkDetails(String workType, String identity) {
                this.workType = workType;
                this.identity = identity;
            }
    
            @Nullable
            @Override
            public String getWorkType() {
                return workType;
            }
    
            @Override
            public String getIdentity() {
                return identity;
            }
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top