Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,946 for Transform (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

        def "does nothing to empty classpath when transform is none"() {
            given:
            def classpath = DefaultClassPath.of()
    
            when:
            def cachedClasspath = transformer.transform(classpath, None)
    
            then:
            cachedClasspath.empty
    
            and:
            0 * fileAccessTimeJournal._
        }
    
        def "does nothing to empty classpath when transform is build logic"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

            GroupedTransformOutputFixture transform = transforms.get(key);
            if (transform == null) {
                transform = new GroupedTransformOutputFixture(initialSubjectType, subject, transformer);
                transforms.put(key, transform);
            }
    
            transform.addOutput(transformOutput);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStep.java

    import java.io.File;
    
    /**
     * A single transform step in a transform chain.
     * <p>
     * Transforms a subject by invoking a transform on each of the subjects files.
     *
     * @see TransformChain
     */
    public class TransformStep implements TaskDependencyContainer, Describable {
        private static final Logger LOGGER = LoggerFactory.getLogger(TransformStep.class);
    
        private final Transform transform;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

        }
    
        @Override
        public ClassPath transform(ClassPath classPath, StandardTransform transform) {
            if (classPath.isEmpty()) {
                return classPath;
            }
            return transformPipelineFor(transform).transform(classPath);
    
        }
    
        @FunctionalInterface
        private interface TransformPipeline {
            ClassPath transform(ClassPath original);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentingClasspathFileTransformer.java

                configHashFor(classpathElementTransformFactory, transform, gradleCoreInstrumentationTypeRegistry),
                classpathFileHasher);
            this.classpathElementTransformFactory = classpathElementTransformFactory;
            this.transform = transform;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/BaseInstrumentingArtifactTransform.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.initialization.transform;
    
    import com.google.common.base.Function;
    import org.gradle.api.artifacts.transform.InputArtifact;
    import org.gradle.api.artifacts.transform.TransformAction;
    import org.gradle.api.artifacts.transform.TransformOutputs;
    import org.gradle.api.artifacts.transform.TransformParameters;
    import org.gradle.api.file.FileSystemLocation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:22:44 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/InstrumentationTransformRegisterer.java

    import org.gradle.api.internal.initialization.transform.InstrumentationAnalysisTransform;
    import org.gradle.api.internal.initialization.transform.MergeInstrumentationAnalysisTransform;
    import org.gradle.api.internal.initialization.transform.ProjectDependencyInstrumentingArtifactTransform;
    import org.gradle.api.internal.initialization.transform.services.CacheInstrumentationDataBuildService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            then:
            output.count("transform") == 3
            outputContains("transform external test-1.2.jar")
            outputContains("transform local test2-1.5.thing using [test-1.2.jar.external]")
            outputContains("transform local test3-1.5.thing using [test-1.2.jar.external]")
            outputContains("artifacts = [test2-1.5.thing.local (test:test2:1.5), test3-1.5.thing.local (test:test3:1.5)]")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformOperationDescriptor.java

        /**
         * Returns the subject of this transform operation.
         */
        SubjectDescriptor getSubject();
    
        /**
         * Returns the dependencies (other transforms and tasks) of this transform operation.
         */
        Set<? extends OperationDescriptor> getDependencies();
    
        /**
         * Describes the transformer of a transform operation.
         *
         * @since 5.1
         */
        interface TransformerDescriptor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/PropertiesTransformer.java

            actions.add(action);
        }
    
        /**
         * Transforms a properties object.  This will modify the
         * original.
         * @param original the properties to transform
         * @return the transformed properties
         */
        @Override
        public Properties transform(Properties original) {
            return doTransform(original);
        }
    
        /**
         * Transforms a properties object and write them out to a stream.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
Back to top