Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CopyingClasspathFileTransformer (0.86 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/CopyingClasspathFileTransformer.java

    import org.gradle.util.internal.GFileUtils;
    
    import java.io.File;
    
    public class CopyingClasspathFileTransformer implements ClasspathFileTransformer {
        private final GlobalCacheLocations globalCacheLocations;
    
        public CopyingClasspathFileTransformer(GlobalCacheLocations globalCacheLocations) {
            this.globalCacheLocations = globalCacheLocations;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                default:
                    throw new IllegalArgumentException();
            }
        }
    
        private TransformPipeline copyingPipeline() {
            return cp -> transformFiles(cp, new CopyingClasspathFileTransformer(globalCacheLocations));
        }
    
        private TransformPipeline instrumentingPipeline(ClasspathElementTransformFactory classpathElementTransformFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            // Cached original JARs live in directories named like o_cc87da7c824fed55002d15744c8fba93, where the name is the fingerprint of the original JAR with "o_" prefix.
            // See CopyingClasspathFileTransformer.
            return cacheChild.isDirectory() && cacheChild.name.startsWith("o_")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.classpath.CopyingClasspathFileTransformer> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CopyingClasspathFileTransformer.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top