Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 405 for project$it (0.28 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. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

                                   "project${it}"
                               },
                               sourceFiles: testProject.sourceFiles,
                               projectName: testProject.name,
                               useMacroIncludes: false
            ] + args
            generateWithTemplate(projectDir, 'build.gradle', 'build.gradle', projectArgs)
            if (projectArgs.projectType == 'exe') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/integTest/groovy/org/gradle/configuration/ApplyScriptPluginBuildOperationIntegrationTest.groovy

            """
    
            when:
            succeeds "help"
    
            then:
            def ops = operations.all(ApplyScriptPluginBuildOperationType) {
                it.details.targetType == "project" &&
                    it.details.buildPath == ":" &&
                    it.details.targetPath == ":"
            }
            ops.size() == 3
    
            ops[0].details.file == buildFile.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/term/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 15 19:02:39 UTC 2021
    - 913 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top