Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 126 for sourcePath (0.17 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            expect:
            builder.build() == defaultOptions
        }
    
        def "generates -sourcepath option"() {
            def file1 = new File("/lib/lib1.jar")
            def file2 = new File("/lib/lib2.jar")
            def fc = [file1, file2]
            spec.compileOptions.sourcepath = fc
            def expected = ["-g", "-sourcepath", GUtil.asPath(fc), "-proc:none", USE_UNSHARED_COMPILER_TABLE_OPTION, "-classpath", ""]
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

        }
    
        private static void prepareFilePatterns(Collection<String> staleClasses, Collection<String> sourcePaths, PatternSet filesToDelete, PatternSet sourceToCompile) {
            for (String sourcePath : sourcePaths) {
                filesToDelete.include(sourcePath);
                sourceToCompile.include(sourcePath);
            }
            for (String staleClass : staleClasses) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

                lateinit var sourceName: String
                lateinit var sourcePath: String
                if (productFlavorName.isNotEmpty()) {
                    sourceName = buildTypeName
                    sourcePath = sourceName
                } else {
                    sourceName = "${productFlavorName}${buildTypeName.capitalize()}"
                    sourcePath = "${productFlavorName}/${buildTypeName}"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/TestNGOptionsIntegrationTest.groovy

        }
    
        @Override
        void writeSources(TestFile sourcePath) {
            sourcePath.file("com/example/IncludedTest.java") << """
    package com.example;
    
    import org.testng.annotations.Test;
    
    public class IncludedTest {
        @Test
        public void testOK() {
        }
    }
    """
            sourcePath.file("com/example/ExcludedTest.java") << """
    package com.example;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

            )
    
            assertContainsGradleKotlinDslJars(scriptPluginClassPath)
        }
    
        def "sourcePath includes Gradle sources"() {
    
            expect:
            assertSourcePathIncludesGradleSourcesGiven("", "")
        }
    
        def "sourcePath includes kotlin-stdlib sources resolved against project"() {
    
            expect:
            assertSourcePathIncludesKotlinStdlibSourcesGiven(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

            val classPath = base.nonProjectScriptPaths.bin + it.classPath
            val gradleKotlinDslJar = classPath.filter(::isGradleKotlinDslJar)
            val sourcePath = gradleKotlinDslJar + base.nonProjectScriptPaths.src + it.sourcePath
            buildOutputModel(it.scriptFile, classPath, sourcePath, base.implicitImports, base.classPathModeExceptions)
        }
    }
    
    
    private
    fun buildScriptModelsInHierarchy(
        rootProject: ProjectInternal,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/JUnitOptionsIntegrationTest.groovy

        @Override
        void writeSources(TestFile sourcePath) {
            sourcePath.file("com/example/Exclude.java") << """
    package com.example;
    
    public interface Exclude {
    }
    """
            sourcePath.file("com/example/IncludedTest.java") << """
    package com.example;
    import org.junit.Test;
    
    public class IncludedTest {
        @Test
        public void testOK() {
        }
    }
    """
            sourcePath.file("com/example/ExcludedTest.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinLibSources.kt

        var sourcePath = ClassPath.EMPTY
    
        val resolvedDependencies = hashSetOf<ComponentIdentifier>()
        for (buildscript in scriptHandlers.asReversed()) {
            val unresolvedDependencies = classpathDependenciesOf(buildscript).filter { it !in resolvedDependencies }
            if (unresolvedDependencies.isNotEmpty()) {
                sourcePath += resolveSourcesUsing(buildscript.dependencies) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 00:40:48 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/commonClasspath.xml

    		<attributes>
    			<attribute name="without_test_code" value="true"/>
    			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
    		</attributes>
    	</classpathentry>
    	<classpathentry sourcepath="GRADLE_USER_HOME/@CACHE@/joda-time/joda-time/2.5/@SHA1@/joda-time-2.5-sources.jar" kind="var" path="GRADLE_USER_HOME/@CACHE@/joda-time/joda-time/2.5/@SHA1@/joda-time-2.5.jar">
    		<attributes>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webserviceClasspath.xml

    		<attributes>
    			<attribute name="without_test_code" value="true"/>
    			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
    		</attributes>
    	</classpathentry>
    	<classpathentry sourcepath="@CACHE_DIR@/org.slf4j/slf4j-api/1.5.8/@SHA1@/slf4j-api-1.5.8-sources.jar" kind="lib" path="@CACHE_DIR@/org.slf4j/slf4j-api/1.5.8/@SHA1@/slf4j-api-1.5.8.jar">
    		<attributes>
    			<attribute name="gradle_used_by_scope" value="main,test"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top