Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for projectFor (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationsFixture.groovy

        private BuildOperationTreeFixture tree
    
        BuildOperationsFixture(GradleExecuter executer, TestDirectoryProvider projectDir) {
            this(executer, projectDir, "operations")
        }
    
        BuildOperationsFixture(GradleExecuter executer, TestDirectoryProvider projectDir, String operationsTraceName) {
            this.path = projectDir.testDirectory.file(operationsTraceName).absolutePath
            executer.beforeExecute {
                this.tree = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top