Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for projectDir (0.25 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

        @TempDir
        lateinit var projectDir: File
        lateinit var firstAcceptedApiChangesFile: File
        lateinit var secondAcceptedApiChangesFile: File
    
        @BeforeEach
        fun setUp() {
            projectDir.resolve("src").resolve("changes").resolve("accepted-changes").mkdirs()
            firstAcceptedApiChangesFile = projectDir.resolve("src/changes/accepted-changes/accepted-public-api-changes.json")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

            return canonicalClassPathFor(projectDir)
        }
    
        protected List<File> canonicalClassPathFor(File projectDir, File scriptFile = null) {
            return canonicalClasspathOf(kotlinBuildScriptModelFor(projectDir, scriptFile))
        }
    
        protected List<File> classPathFor(File projectDir, File scriptFile = null) {
            return kotlinBuildScriptModelFor(projectDir, scriptFile).classPath
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

        public final String task = 'greet'
        public final TestFile projectDir
        public final Language language
        public final Kind kind
        public final TestFile buildFile
    
        BuildLogicChangeFixture(TestFile projectDir, Language language = Language.JAVA, Kind kind = Kind.CHANGE_SOURCE) {
            this.projectDir = projectDir
            this.language = language
            this.kind = kind
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ScriptChangeFixture.groovy

            BUILDSRC_SETTINGS,
        }
    
        final TestFile projectDir
        final TestFile scriptFile
        final List<String> buildArguments
        final String expectedOutputBeforeChange = 'Hello!'
        final String expectedOutputAfterChange = 'Hi!'
    
        ScriptChangeFixture(TestFile projectDir, TestFile scriptFile, List<String> buildArguments) {
            this.projectDir = projectDir
            this.scriptFile = scriptFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractCrossVersionPerformanceTest.groovy

            }
        }
    
        static {
            // TODO - find a better way to cleanup
            System.addShutdownHook {
                RESULTS_STORE.close()
            }
        }
    }
    
    class ApplyDevelocityPluginMutator implements BuildMutator {
    
        private final File projectDir
    
        ApplyDevelocityPluginMutator(File projectDir) {
            this.projectDir = projectDir
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperProjectIntegrationTest.groovy

            given:
            def projectDir = file('foo$bar-baz')
            projectDir.mkdirs()
            prepareWrapper(distribution.binDistribution.toURI()) {
                it.inDirectory(projectDir)
            }
            projectDir.file("build.gradle") << """
                task assertProjectDirHasMeta {
                    def dirName = provider { projectDir.name }
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

        @Override
        public Model interpolateModel(
                Model model, Path projectDir, ModelBuilderRequest request, ModelProblemCollector problems) {
            List<? extends ValueSource> valueSources = createValueSources(model, projectDir, request, problems);
            List<? extends InterpolationPostProcessor> postProcessors = createPostProcessors(model, projectDir, request);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            assert rootProject.projectDir == testDirectory.absolutePath
            assert rootProject.buildFile == buildFile.absolutePath
            assert rootProject.children.size() == 3 // All projects are created when storing
            with(rootProject.children.first() as Map<String, Object>) {
                assert name == 'a'
                assert path == ':a'
                assert projectDir == file('a').absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

            ProjectInternal parentProject = (ProjectInternal) parent;
            ProjectDescriptorRegistry descriptorRegistry = parentProject.getServices().get(ProjectDescriptorRegistry.class);
            DefaultProjectDescriptor parentDescriptor = descriptorRegistry.getProject(parentProject.getPath());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. 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)
Back to top