Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for classPath (0.24 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            // the entire set of framework implementation dependencies from the distribution in order to ensure that all implementation
            // dependencies on the classpath share a version. This can _still_ lead to duplicates on the classpath, but it is at least
            // avoidable if the user adds junit-platform-launcher to their test runtime classpath, which they should be doing, since
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingModelsWithDependencyResolutionIntegrationTest.groovy

            then:
            model.size() == 4
            model[0].message == "project :a classpath = 2"
            model[1].message == "project :b classpath = 1"
            model[2].message == "project :c classpath = 0"
            model[3].message == "project :d classpath = 0"
    
            and:
            fixture.assertStateStored {
                projectConfigured(":buildSrc")
                projectConfigured(":")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                classpath = classpath.plus(moduleRegistry.getModule("gradle-dependency-management").getAllRequiredModulesClasspath());
                classpath = classpath.plus(moduleRegistry.getModule("gradle-plugin-use").getAllRequiredModulesClasspath());
                classpath = classpath.plus(moduleRegistry.getModule("gradle-workers").getAllRequiredModulesClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

    import org.gradle.internal.classloader.FilteringClassLoader
    import org.gradle.internal.classpath.transforms.ClassTransform
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForAgent
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForLegacy
    import org.gradle.internal.classpath.types.GradleCoreInstrumentationTypeRegistry
    import org.gradle.internal.configuration.inputs.InstrumentedInputs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

    import org.gradle.api.GradleException;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.internal.classpath.DefaultModuleRegistry;
    import org.gradle.api.internal.classpath.ModuleRegistry;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.installation.CurrentGradleInstallation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

    import org.gradle.internal.classloader.TransformErrorHandler;
    import org.gradle.internal.classloader.TransformReplacer;
    import org.gradle.internal.classloader.VisitableURLClassLoader;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.TransformedClassPath;
    import org.gradle.internal.file.Deleter;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.serialize.Serializer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            Collection<File> classpath = cleanup(GLOBAL_SERVICES.get(ModuleRegistry.class).getAdditionalClassPath().getAsFiles());
            if (!OperatingSystem.current().isWindows()) {
                return classpath;
            }
            // Use a Class-Path manifest JAR to circumvent too long command line issues on Windows (cap 8191)
            // Classpath is huge here because it's the test runtime classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

        private final ConcurrentMap<ProtectionDomain, Loader> loaders;
        private final TransformedClassPath classPath;
        private volatile boolean closed;
    
        public TransformReplacer(TransformedClassPath classPath) {
            this.loaders = new ConcurrentHashMap<ProtectionDomain, Loader>();
            this.classPath = classPath;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

    import org.gradle.api.internal.MutationGuards;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.api.internal.classpath.DefaultPluginModuleRegistry;
    import org.gradle.api.internal.classpath.ModuleRegistry;
    import org.gradle.api.internal.classpath.PluginModuleRegistry;
    import org.gradle.api.internal.collections.DefaultDomainObjectCollectionFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top