Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for projectFor (0.13 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. 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)
  3. 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)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

            }
        }
    
        private fun Fe10AnalysisContext.renderTypeProjection(projection: TypeProjection, printer: PrettyPrinter) {
            with(printer) {
                if (projection.isStarProjection) {
                    append("*")
                } else {
                    when (projection.projectionKind) {
                        Variance.INVARIANT -> renderType(projection.type, printer)
                        Variance.IN_VARIANCE -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest.groovy

            numProjects.times { count ->
                def projectDir = resources.dir.createDir("project$count")
                generateSources(numJavaSources, resources.dir.file("JavaClass.java"), new File(projectDir, "src/main/java"))
                generateSources(numGroovySources, resources.dir.file("GroovyClass.groovy"), new File(projectDir, "src/main/groovy"))
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

            }
        }
    
        def generateProject(File projectDir, Integer subProjectNumber) {
            def isRoot = subProjectNumber == null
    
            file projectDir, KOTLIN.fileNameFor('settings'), generateSettingsGradle(isRoot)
            file projectDir, "gradle.properties", generateGradleProperties(isRoot)
    
            file projectDir, config.dsl.fileNameFor('build'), generateBuildGradle(subProjectNumber)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            def project = withConnection { connection -> connection.getModel(CppProject.class) }
    
            then:
            project.projectIdentifier.projectPath == ':'
            project.projectIdentifier.buildIdentifier.rootDir == projectDir
    
            project.mainComponent instanceof CppApplication
            project.mainComponent.name == 'main'
            project.mainComponent.baseName == 'app'
    
            project.mainComponent.binaries.size() == 4
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/ProjectBuilder.java

         *
         * @return The project
         */
        public Project build() {
            if (parent != null) {
                return impl.createChildProject(name, parent, projectDir);
            }
            return impl.createProject(name, projectDir, gradleUserHomeDir);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

                }
            """
    
            when:
            projectDir(producer)
            succeeds 'publish'
    
            then:
            pluginModule.assertPublished()
            pluginMarker.assertPublished()
            pluginModule.artifact([:]).assertPublished()
    
            when:
            projectDir(consumer)
            fails 'greet', "--stacktrace"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            given:
            buildFile("""
                println("exists = " + new File(projectDir, "file1.txt").exists())
                println("exists = " + new File(projectDir, "file2.txt").exists())
                println("exists = " + new File(projectDir, "file3.txt").exists())
            """)
    
            when:
            file("gradle.properties") << """
    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