Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 575 for project$it (0.15 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ProjectRootOfTest.kt

            @JvmStatic
            fun testCases() =
                listOf(arrayOf("settings.gradle"), arrayOf("settings.gradle.kts"))
        }
    
        @Test
        fun `given a script file under a nested project it should return the nested project root`() {
    
            withFolders {
                "root" {
                    "nested-project-root" {
                        // a nested project is detected by the presence of a settings file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/cpp-project/build.gradle

        apply plugin: 'cpp-executable'
    }
    <% } else { %>
    apply plugin: 'cpp-library'
    <% } %>
    
    <% if (projectDeps.size() > 0) { %>
    dependencies {
        <% projectDeps.each() { %>
        implementation project(":${it}")
        <% } %>
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 396 bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/build.gradle

            implementation "${it.shortNotation()}" <% } %>
        <% } %>
        <% if (binding.hasVariable("projectDependencies") && subprojectNumber > 1) { (1..<subprojectNumber).each { %>
            projectsConfiguration project(":project${it}") <% } %>
        <% } %>
    }
    
    test {
        jvmArgs '-Xmx1g', '-XX:+HeapDumpOnOutOfMemoryError'
        <% if (binding.hasVariable("fullTestLogging")) { %>
            testLogging {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

        def "reasonable sized multi-project"() {
            given:
            def extraProjectNames = (0..100).collect { "project$it" }
            extraProjectNames.each {
                settingsFile << "\n include '$it' \n"
                buildFile << "\n project(':$it') { dependencies { implementation project(':upstream') } } \n"
                file("${it}/src/main/java/Thing${it}.java").createFile() << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/CONTRIBUTING.md

    # Contributing to Go
    
    Go is an open source project.
    
    It is the work of hundreds of contributors. We appreciate your help!
    
    ## Filing issues
    
    When [filing an issue](https://golang.org/issue/new), make sure to answer these
    five questions:
    
    1.  What version of Go are you using (`go version`)?
    2.  What operating system and processor architecture are you using?
    3.  What did you do?
    4.  What did you expect to see?
    5.  What did you see instead?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 913 bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    # Contributing to Go
    
    Go is an open source project.
    
    It is the work of hundreds of contributors. We appreciate your help!
    
    ## Before filing an issue
    
    If you are unsure whether you have found a bug, please consider asking in the [golang-nuts mailing
    list](https://groups.google.com/forum/#!forum/golang-nuts) or [other forums](https://golang.org/help/) first. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:00:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                        """
    
                        includeBuild("project$it") {
                            dependencySubstitution {
                                substitute(module("org.gradle.test.performance:project${it}")).using(project(":"))
                            }
                        }
                        """
                    } else {
                        "includeBuild(\"project$it\")"
                    }
                }.join("\n")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/README.adoc

    This is due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=520667[a limitation in Eclipse] that does not allow more than one module in one project.
    It you want to do blackbox testing in Eclipse, you should move the integration tests to separate subprojects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/README.adoc

    This is due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=520667[a limitation in Eclipse] that does not allow more than one module in one project.
    It you want to do blackbox testing in Eclipse, you should move the integration tests to separate subprojects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ExtraPropertiesIntegrationTest.groovy

                            assert testProp == 'rootValue'
                        }
                    }
                """.stripIndent()
    
                ['a', 'b', 'a:a1'].each {
                    buildFile << """
                    project(':${it}') {
                        task checkTestProp {
                            doLast {
                                assert testProp == '${expectedPropPerProject[it]}'
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top