Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,455 for classpaths (0.17 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/DefaultClassPathTest.groovy

            def cp2 = ClassPath.EMPTY
    
            expect:
            (cp1 + cp2).is(cp1)
        }
    
        def "add returns rhs when lhs is empty"() {
            def cp1 = ClassPath.EMPTY
            def cp2 = DefaultClassPath.of(new File("a.jar"))
    
            expect:
            (cp1 + cp2).is(cp2)
        }
    
        def "can add collection of files to classpath"() {
            def file1 = new File("a.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/ivy/with-dependencies.xml

            <conf name="provided" visibility="public" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkedTestClasspath.java

    import java.io.File;
    import java.net.URL;
    
    /**
     * The classpath of a forked test process, which includes both the application and implementation classpaths.
     * User-defined classes are loaded by and executed in the context of the application classloader. This classloader
     * contains classes from the {@code testRuntimeClasspath}. The implementation classpath includes classes required
     * by Gradle's test framework integrations.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

              id 'java-library'
            }
    
            ${mavenCentralRepository()}
    
            dependencies {
                // production code requires commons-lang3 at runtime, which will leak into tests' runtime classpaths
                implementation 'org.apache.commons:commons-lang3:3.11'
            }
    
            testing {
                suites {
                    integTest(JvmTestSuite)
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/annotations/Beta.java

     *
     * <p>It is generally safe for <i>applications</i> to depend on beta APIs, at the cost of some extra
     * work during upgrades. However it is generally inadvisable for <i>libraries</i> (which get
     * included on users' CLASSPATHs, outside the library developers' control) to do so.
     *
     * @author Kevin Bourrillion
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({
      ElementType.ANNOTATION_TYPE,
      ElementType.CONSTRUCTOR,
      ElementType.FIELD,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/annotations/Beta.java

     *
     * <p>It is generally safe for <i>applications</i> to depend on beta APIs, at the cost of some extra
     * work during upgrades. However it is generally inadvisable for <i>libraries</i> (which get
     * included on users' CLASSPATHs, outside the library developers' control) to do so.
     *
     * @author Kevin Bourrillion
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({
      ElementType.ANNOTATION_TYPE,
      ElementType.CONSTRUCTOR,
      ElementType.FIELD,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    Dependencies declared here are thus visible to the `main` and `test` compilation classpaths.
    
    `providedRuntime`::
    This configuration should be used for dependencies required at runtime but which are provided by the environment in which the WAR is deployed.
    Dependencies declared here are only visible to the `main` and `test` runtime classpaths.
    
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

              `java-library`
            }
    
            ${mavenCentralRepository(GradleDsl.KOTLIN)}
    
            dependencies {
                // production code requires commons-lang3 at runtime, which will leak into tests' runtime classpaths
                implementation("org.apache.commons:commons-lang3:3.11")
            }
    
            testing {
                suites {
                    val integTest by registering(JvmTestSuite::class)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ScriptClassloadingIntegrationTest.groovy

                        ${mavenCentralRepository()}
                        dependencies {
                            // Dynamically changing the classpath here surfaces problems with the ClassLoaderCache
                            classpath "org.apache.commons:commons-lang3:\${version}"
                        }
                    }
    
                    task doStringOp {
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    For details on what level of understanding Gradle has for detecting changes to classpaths and what is considered as a classpath see <<incremental_build.adoc#sec:task_input_using_classpath_annotations,this section>>.
    
    [[filter_runtime_classpath]]
    ===== Filtering runtime classpaths
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top