Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 125 for projectFor (0.18 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

            result = mostRecentReleaseExecuter.withTasks(tasks).run()
            result
        }
    
        static String createProjectName(int projectNo) {
            "project$projectNo"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

        ): Boolean {
            if (typeArguments.isEmpty()) return false
            if (!visited.add(this)) return true
            for (projection in typeArguments) {
                // E.g., Test : Comparable<Test>
                val type = (projection as? ConeKotlinTypeProjection)?.type ?: continue
                // E.g., Comparable<Test>
                val newType = substituteOrNull(type) ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

                assert buildPath == ':'
                assert rootProject.projectDir == rootDir.absolutePath
                assert rootProject.buildFile == rootDir.file("build.gradle").absolutePath
            }
            with(projectsIdentified[1].details) {
                assert buildPath == childBuild
                assert rootProject.projectDir == childDir.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

                    void addTask(ModelMap<Task> tasks, Props p) {
                        tasks.create('printResolvedValues') {
                            doLast {
                                String projectDirPath = project.projectDir.absolutePath
                                String relative
                                String relativeExpected
    
                                assert p.theFile1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                    id('java-library')
                }
                allprojects {
                    println("project name = " + name)
                    println("project path = " + path)
                    println("project projectDir = " + projectDir)
                    println("project rootDir = " + rootDir)
                    println("project toString = " + it)
                    it.name
                    project.name
                    project.path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            given:
            goodCode()
    
            and:
            buildFile << """
                dependencies {
                    file("\$projectDir/lib/").mkdirs()
                    implementation files((1..999).collect {
                        createJarFile("\$projectDir/lib/library\${it}.jar")
                    })
                }
    
                def createJarFile(String libraryPath) {
                    def fos
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    include('p1')
    include('p1:p11')
    includeBuild('another')"""
            file("p1").mkdir()
            file('another/settings.gradle') << ""
    
            when:
            projectDir("p1")
            run "projects"
    
            then:
            outputDoesNotContain "another"
        }
    
        def "included builds are only rendered if there are some"() {
            when:
            run "projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            0 * _
        }
    
        def "starts watching when missing file is created"() {
            def rootDir = file("root").createDir()
            def watchableHierarchy = rootDir.file("a/b/projectDir")
            def missingFile = watchableHierarchy.file("c/missing.txt")
    
            when:
            registerWatchableHierarchies([watchableHierarchy])
            addSnapshot(missingFileSnapshot(missingFile))
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            task.classpath.files == project.sourceSets.test.runtimeClasspath.files
            task.testClassesDirs.contains(project.sourceSets.test.java.destinationDirectory.get().asFile)
            task.workingDir == project.projectDir
        }
    
        def "applies mappings to tasks added by the build script"() {
            given:
            project.pluginManager.apply(JavaPlugin)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            '''
                task fooJar(type: Jar) {
                    archiveBaseName = 'c-foo'
                    destinationDirectory = projectDir
                }
                task barJar(type: Jar) {
                    archiveBaseName = 'c-bar'
                    destinationDirectory = projectDir
                }
                artifacts {
                    foo fooJar
                    bar barJar
                }
            '''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top