Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getToAttributes (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/Transform.java

     */
    public interface Transform extends Describable, TaskDependencyContainer {
        Class<?> getImplementationClass();
    
        ImmutableAttributes getFromAttributes();
    
        ImmutableAttributes getToAttributes();
    
        /**
         * Whether the transformer requires dependencies of the transformed artifact to be injected.
         */
        boolean requiresDependencies();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

         * The from attributes of the registered transform.
         */
        Map<String, String> getFromAttributes();
    
        /**
         * The to attributes of the registered transform.
         */
        Map<String, String> getToAttributes();
    
        /**
         * The file name of the input artifact that is about to be transformed.
         */
        String getArtifactName();
    
        /**
         * The class of the transform action.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

                return AttributesToMapConverter.convertToMap(transform.getFromAttributes());
            }
    
            @Override
            public Map<String, String> getToAttributes() {
                return AttributesToMapConverter.convertToMap(transform.getToAttributes());
            }
    
            @Override
            public org.gradle.operations.dependencies.variants.ComponentIdentifier getComponentId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

            return isolatedParameters;
        }
    
        @Override
        public ImmutableAttributes getFromAttributes() {
            return fromAttributes;
        }
    
        @Override
        public ImmutableAttributes getToAttributes() {
            return toAttributes;
        }
    
        @Override
        public Class<? extends TransformAction<?>> getImplementationClass() {
            return implementationClass;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top