Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 362 for CLASSPATH (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

            } catch (NoSuchMethodError ignore) {
                // Not supported on Java 6
            }
        }
    
        public MixInLegacyTypesClassLoader(ClassLoader parent, ClassPath classPath, LegacyTypesSupport legacyTypesSupport) {
            super("legacy-mixin-loader", parent, classPath);
            this.legacyTypesSupport = legacyTypesSupport;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

        private static final ClassName CALL_INTERCEPTOR_CLASS = ClassName.bestGuess("org.gradle.internal.classpath.intercept.AbstractCallInterceptor");
        private static final ClassName SIGNATURE_AWARE_CALL_INTERCEPTOR_CLASS = ClassName.bestGuess("org.gradle.internal.classpath.intercept.SignatureAwareCallInterceptor");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    nonstop=false
    case "\$( uname )" in                #(
      CYGWIN* )         cygwin=true  ;; #(
      Darwin* )         darwin=true  ;; #(
      MSYS* | MINGW* )  msys=true    ;; #(
      NONSTOP* )        nonstop=true ;;
    esac
    
    CLASSPATH=$classpath
    <% if ( mainClassName.startsWith('--module ') ) { %>
    MODULE_PATH=$modulePath
    <% } %>
    
    # Determine the Java command to use to start the JVM.
    if [ -n "\$JAVA_HOME" ] ; then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

            when:
            fixture.runtimeVersion = version
            fixture.artifactVersion = version
            settingsFile.text = """
                buildscript {
                    repositories {
                        maven { url '${mavenRepo.uri}' }
                    }
                    dependencies {
                        classpath '${"com.gradle:develocity-gradle-plugin:$version"}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

         * Referencing projects does not mean adding a build path dependencies between them!
         * If you need to configure a build path dependency use Gradle's dependencies section or
         * eclipse.classpath.whenMerged { classpath -&gt; ... to manipulate the classpath entries
         * <p>
         * For example see docs for {@link EclipseProject}
         */
        public void setReferencedProjects(Set<String> referencedProjects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                            // The worker jar is first on the classpath.
                            String workerJar = splitCliClasspath[0];
                            assertTrue(workerJar.contains("gradle-worker.jar"));
    
                            // After, we expect the test runtime classpath.
                            String[] filteredCliClasspath = Arrays.copyOfRange(splitCliClasspath, 1, splitCliClasspath.length);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

        }
    
        class ClasspathPropertyTask extends DefaultTask {
            @Classpath
            FileCollection classpathOnly
            @Classpath
            @InputFiles
            FileCollection classpathInputFiles
            @InputFiles
            @Classpath
            FileCollection inputFilesClasspath
        }
    
        class CompileClasspathPropertyTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    When it comes to the dependencies of a `JavaCompile` task (i.e. its _compile classpath),_ only changes to the Application Binary Interface (ABI) of these dependencies require compilation to be executed.
    Gradle has a deep understanding of what a compile classpath is and uses a sophisticated normalization strategy for it.
    Task outputs can be re-used as long as the ABI of the classes on the compile classpath stays the same.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

         *
         * This is only well supported for PMD 5.2.1 or better.
         *
         * @since 2.8
         */
        public void setClasspath(@Nullable FileCollection classpath) {
            this.classpath = classpath;
        }
    
        /**
         * Controls whether to use incremental analysis or not.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

                buildscript {
                    dependencies {
                        classpath 'org.test:pluginDependencyA:1.0'
                    }
                }
            """
            buildA.file("a2/build.gradle") << """
                buildscript {
                    dependencies {
                        classpath 'org.test:pluginDependencyA:1.0'
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top