Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for buildscript (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    However, it will use a single shared classloader for all units of work.
    This means that each unit of work can affect one another through static class state.
    It also means that every unit of work uses the same version of libraries on the buildscript classpath.
    If you wanted the user to be able to configure the task to run with a different (but compatible) version of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            return project
        }
    
        //TODO please move more coverage to NewDefaultProjectTest
    
        def scriptClasspath() {
            when:
            project.buildscript {
                repositories
            }
    
            then:
            1 * scriptHandlerMock.getRepositories()
        }
    
        def testProject() {
            expect:
            project.is(child1.parent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/15679")
        def "fileTrees with regular file roots cannot be used as output files"() {
            enableProblemsApiCheck()
            expectReindentedValidationMessage()
            buildScript """
                task myTask {
                    inputs.file file('input.txt')
                    outputs.files(files('build/output.txt').asFileTree).withPropertyName('output')
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

            if (start >= 0) {
                existingScript = existingScript.substring(0, start) + existingScript.substring(end, existingScript.length())
            }
            def buildScriptBlock = """
    buildscript {
        dependencies.classpath files("${ClasspathUtil.getClasspathForClass(GenerateGraphTask).toURI()}")
    }
    """
            String generatedContent = ""
            builder.configs.forEach { config, taskName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Previously, any `pluginManagement {}` blocks inside a settings script were executed during the normal execution of the script.
    
    Now, they are executed earlier in a similar manner to `buildscript {}` or `plugins {}`.
    This means that code inside such a block cannot reference anything declared elsewhere in the script.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/dsl.xml

                <tr>
                    <td>allprojects</td>
                </tr>
                <tr>
                    <td>artifacts</td>
                </tr>
                <tr>
                    <td>buildscript</td>
                </tr>
                <tr>
                    <td>configurations</td>
                </tr>
                <tr>
                    <td>dependencies</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
  7. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    Concrete examples of build scripts and output available in <<viewing_debugging_dependencies.adoc#sec:debugging-build-scans,Viewing and debugging dependencies>>.
    
    Running the `buildEnvironment` task visualises the buildscript dependencies of the selected project, similarly to how `gradle dependencies` visualizes the dependencies of the software being built:
    
    ----
    $ gradle buildEnvironment
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    * plugins specified in the <<plugins.adoc#sec:plugins_block,`plugins {}` block>>;
    * `buildscript` classpath dependencies;
    * dependencies in the root project of the <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc,build source (`buildSrc`)>> that appear on the compile or runtime classpath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

            '''
    
            def buildScriptA = file('a/build.gradle')
            groovyFile buildScriptA, '''
                plugins {
                    id("my.plugin-1")
                    id("my.plugin-2")
                    id("my.plugin")
                }
            '''
            configuring(buildScriptA)
    
            def buildScriptB = file('b/build.gradle')
            groovyFile buildScriptB, '''
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. Makefile

    	@echo "Verifying build with race"
    	@(env bash $(PWD)/buildscripts/verify-build.sh)
    
    verify-healing: install-race ## verify healing and replacing disks with minio binary
    	@echo "Verify healing build with race"
    	@(env bash $(PWD)/buildscripts/verify-healing.sh)
    	@(env bash $(PWD)/buildscripts/verify-healing-empty-erasure-set.sh)
    	@(env bash $(PWD)/buildscripts/heal-inconsistent-versions.sh)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top