Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 348 for _classpath (0.15 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

        }
    }
    """
    
            // then
            def classpathA = classpath('a')
            def classpathB = classpath('b')
            assert classpathA.libs.size() == 1
            classpathA.assertHasLibs('compileOnly-1.0.jar')
            assert classpathB.libs.size() == 1
            assert classpathB.projects.collect { it.name } == ['a']
            classpathB.assertHasLibs('compile-1.0.jar')
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    exception to the GPLv2, based on the GNU Project exception for its
    Classpath libraries, known as the GNU Classpath Exception, but only
    where Oracle has expressly included in the particular source file's
    header the words "Oracle designates this particular file as subject to
    the "Classpath" exception as provided by Oracle in the LICENSE file
    that accompanied this code."
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

            // TODO:isolated support precompiled scripts
            IntermediateScriptModel(it, ClassPath.EMPTY, ClassPath.EMPTY, emptyList())
        }
    }
    
    
    private
    fun buildOutputModel(scriptFile: File, classPath: ClassPath, sourcePath: ClassPath, implicitImports: List<String>, exceptions: List<Exception>) =
        StandardKotlinDslScriptModel(
            classPath.asFiles,
            sourcePath.asFiles,
            implicitImports,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultDependenciesAccessors.java

    import org.gradle.initialization.DependenciesAccessors;
    import org.gradle.internal.Cast;
    import org.gradle.internal.buildoption.FeatureFlags;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.DefaultClassPath;
    import org.gradle.internal.execution.ExecutionEngine;
    import org.gradle.internal.execution.ImmutableUnitOfWork;
    import org.gradle.internal.execution.InputFingerprinter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.classpath
    
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.internal.installation.GradleInstallation
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        }
        ClassPath classPath = ClassPath.from(getClass().getClassLoader());
        // ClassPath may contain resources from the boot class loader; just not from the class path.
        for (ResourceInfo resource : classPath.getResources()) {
          assertThat(resource.getResourceName()).doesNotContain("com/google/common/reflect/");
        }
      }
    
      private static ClassPath.ClassInfo findClass(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

            withClassJar("fixture.jar", DeepThought::class.java)
    
            withBuildScript(
                """
                buildscript {
                    val classpath2 = configurations.named("classpath")
                    dependencies { classpath2(files("fixture.jar")) }
                }
    
                task("compute") {
                    doLast {
                        val computer = ${DeepThought::class.qualifiedName}()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. 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)
Back to top