Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 597 for project$it (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

            when:
            succeeds "build"
    
            then:
            def plugins = operations.all(ApplyPluginBuildOperationType) {
                it.details.targetType == "project" &&
                    it.details.targetPath == ":" &&
                    it.details.buildPath == ":"
            }
    
            def pluginIdByClass = plugins.details.collectEntries ( { [it.pluginClass, it.pluginId ] })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

                include(":libB")
                include(":libC")
    
            """.stripIndent()
    
            if (config.subProjects != 0) {
                includedProjects += """${(0..config.subProjects - 1).collect { "include(\"project$it\")" }.join("\n")}"""
            }
    
            return includedProjects
        }
    
        static String generateBuildGradle(Integer subProjectNumber) {
            def isRoot = subProjectNumber == null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    Consult the <<directory_layout.adoc#dir:gradle_user_home,Gradle Directories reference>> to learn more.
    
    [[project_root]]
    == Project Root directory
    
    The project root directory contains all source files from your project.
    
    It also contains files and directories Gradle generates, such as `.gradle` and `build`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsIncludeManyIntegrationTest.groovy

    class SettingsIncludeManyIntegrationTest extends AbstractIntegrationSpec {
        // A list of project paths: project000, project001, ..., project300
        private def projectNames = (0..300).collect {
            "project${it.toString().padLeft(3, "0")}"
        }
        private def projectNamesCommaSeparated = projectNames.collect {
            "\"$it\""
        }.join(", ")
    
        private def createProjectDirectories(int count, String includeFunction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

    import java.util.stream.Stream;
    
    /**
     * Generates an HTML dependency report. This report
     * combines the features of the ASCII dependency report and those of the ASCII
     * dependency insight report. For a given project, it generates a tree of the dependencies
     * of every configuration, and each dependency can be clicked to show the insight of
     * this dependency.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                alwaysPasses = true
            }
    
            /**
             * Allows passing a predicate which tells if a plugin is supposed to
             * pass or not.
             * Because a plugin validation is independent of _which_ project it is
             * applied to, it doesn't care about the project path.
             */
            void passing(Closure<Boolean> pluginIdPredicate) {
                passingPluginsPredicate = pluginIdPredicate
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

            given:
            executer.requireOwnGradleUserHomeDir()
            10.times {
                createDirs("project-" + it)
            }
            settingsFile << """
                rootProject.name = 'root'
                10.times {
                    include "project-\${it}"
                }
            """
            file("build.gradle") << """
                import java.util.concurrent.CountDownLatch
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

            return address
        }
    
        private
        fun displayNameFor(key: K): DisplayName {
            val unitDescription = projectPathForKey(key)?.let { "for project $it" } ?: "for build"
            return Describables.of(valueDescription, unitDescription)
        }
    
        private
        fun readValue(key: K, addressOfCached: BlockAddress): V {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. docs/en/docs/history-design-future.md

    # History, Design and Future
    
    Some time ago, <a href="https://github.com/tiangolo/fastapi/issues/3#issuecomment-454956920" class="external-link" target="_blank">a **FastAPI** user asked</a>:
    
    > What’s the history of this project? It seems to have come from nowhere to awesome in a few weeks [...]
    
    Here's a little bit of that history.
    
    ## Alternatives
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiProjectDependencyIntegrationTest.groovy

            jarsNotBuilt 'a', 'b', 'c'
        }
    
        def projectDependency(def link) {
            def from = link['from']
            def to = link['to']
    
            def dependencies = to.collect {
                "api project(':${it}')"
            }.join('\n')
    
            buildFile << """
    project(':$from') {
        dependencies {
            ${dependencies}
        }
    }
    """
        }
    
        def failingBuild(def project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top