Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getToAttributes (0.37 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)
Back to top