Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for originalClassPath (0.47 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/CacheInstrumentationDataBuildService.java

                this.hashToOriginalFile = Lazy.locking().of(() -> {
                    Set<File> originalClasspath = getOriginalClasspath().getFiles();
                    Map<String, File> originalFiles = Maps.newHashMapWithExpectedSize(originalClasspath.size());
                    originalClasspath.forEach(file -> {
                        String fileHash = getArtifactHash(file);
                        if (fileHash != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/testFixtures/groovy/org/gradle/tooling/internal/provider/AbstractClassGraphSpec.groovy

        @Rule TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        /**
         * Returns the classpath for the given classes.
         */
        List<File> originalClassPath(Class<?>... classes) {
            return classes.collect { ClasspathUtil.getClasspathForClass(it) }
        }
    
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/ClasspathInfererTest.groovy

                action.execute(null)
            } finally {
                loader?.close()
            }
        }
    
        private List<File> getToolingApiClassPath() {
            originalClassPath(BuildAction)
        }
    
        private List<URL> classpathFor(Class<?> cl) {
            List<URI> classpath = []
            factory.getClassPathFor(cl, classpath)
            return classpath.collect { it.toURL() }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        instrument{{"Instrument and upgrade\n(Artifact transform)"}}
        typeHierarchy(Classpath with all super types)
        artifactOutput("1. Artifact metadata: hash, name\n2. Direct Super types\n3. Class dependencies")
        originalClasspath(Original classpath)
        originalClasspathInput("Original classpath as input:\nto recalculate Resolve supertypes\nstep on classpath change")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top