Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 352 for projectFor (0.38 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

    internal
    sealed class CachedProjectState(
        val path: Path,
        val projectDir: File,
        val buildFile: File
    )
    
    
    internal
    class ProjectWithWork(
        path: Path,
        projectDir: File,
        buildFile: File,
        val buildDir: File,
        val normalizationState: InputNormalizationHandlerInternal.CachedState?
    ) : CachedProjectState(path, projectDir, buildFile)
    
    
    internal
    class ProjectWithNoWork(
        path: Path,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r84/TestLauncherCompositeBuildCrossVersionTest.groovy

            assert !output.contains('TestClass1.testMethod')
        }
    
        private void javaBuildWithTests(TestFile projectDir) {
            projectDir.file('settings.gradle') << ''
            javaLibraryWithTests(projectDir)
        }
    
        private void javaLibraryWithTests(TestFile projectDir) {
            projectDir.file('build.gradle') << '''
                plugins {
                    id 'java-library'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJUnitIntegrationTest.groovy

        }
    
        @Test
        void categoriesSample() {
            TestFile projectDir = sample.dir.file("groovy")
    
            // Build and test projects
            executer.inDirectory(projectDir).withTasks('clean', 'build').run()
    
            // Check tests have run
            DefaultTestExecutionResult result = new DefaultTestExecutionResult(projectDir)
            result.assertTestClassesExecuted('org.gradle.junit.CategorizedJUnitTest')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/LoadBuildStructureBuildOperationIntegrationTest.groovy

            assert project.name == name
            assert project.getBuildTreePath == buildTreePath ?: project.path
            assert project.buildTreePath == buildTreePath ?: project.path
            assert project.projectDir == projectDir.absolutePath
            assert project.buildFile == new File(projectDir, buildFileName).absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedProjectScopeServices.java

     */
    public class WorkerSharedProjectScopeServices implements ServiceRegistrationProvider {
        private final File projectDir;
    
        public WorkerSharedProjectScopeServices(File projectDir) {
            this.projectDir = projectDir;
        }
    
        void configure(ServiceRegistration registration) {
            registration.add(DefaultPropertyFactory.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

            return runnerForLocation(projectDir, agpVersion, "assembleDebug").deprecations(SantaTrackerDeprecations) {
                expectFilteredFileCollectionDeprecationWarning()
            }.build()
        }
    
        protected SmokeTestGradleRunner.SmokeTestBuildResult buildCachedLocation(File projectDir, String agpVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r25/ToolingApiEclipseModelCrossVersionSpec.groovy

        def "export classpath entry option is reflected in eclipse model"() {
            createDirs("a")
            projectDir.file('settings.gradle').text = '''
    include 'a'
    rootProject.name = 'root'
    '''
    
            projectDir.file('build.gradle').text = """
    
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    ${mavenCentralRepository()}
    
    configurations {
        provided
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

                    }
                }
            }
    
            assertThat(
                sourcePathFor(
                    classPath = ClassPath.EMPTY,
                    scriptFile = null,
                    projectDir = folder("project"),
                    gradleHomeDir = folder("gradle"),
                    sourceDistributionResolver = mock()
                ).asFiles,
                hasItems(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/GradleEnterprisePluginLegacyContactPointFixture.groovy

        String artifactVersion = AutoAppliedDevelocityPlugin.VERSION
    
        GradleEnterprisePluginLegacyContactPointFixture(TestFile projectDir, MavenFileRepository mavenRepo, GradleExecuter pluginBuildExecuter) {
            this.projectDir = projectDir
            this.mavenRepo = mavenRepo
            this.pluginBuildExecuter = pluginBuildExecuter
        }
    
        String pluginManagement() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

        final TestFile projectDir
    
        String packageName = "org.gradle.test"
    
        final Map<String, String> pluginIds = [:]
    
        PluginBuilder(TestFile projectDir) {
            this.projectDir = projectDir
        }
    
        TestFile getBuildFile() {
            file("build.gradle")
        }
    
        TestFile file(String path) {
            projectDir.file(path)
        }
    
        TestFile groovy(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top