Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 711 for build$it (0.23 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsOrderingIntegrationTest.groovy

            then:
            fails()
            failureDescriptionContains("Plugin [id: '${build2.projectPluginId}'] was not found in any of the following sources:")
        }
    
        def "first included build can include the build it needs project plugins from explicitly"() {
            when:
            buildFile << """
                plugins {
                    id("${build1.projectPluginId}")
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 11 09:38:08 UTC 2020
    - 7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ReadOnlyDependencyCacheWithinContainerTest.groovy

            def testBuildDir = createContainerBuild()
    
            when:
            synchronizer.expect("build")
            // The HEAD requests are because the URL of the repository is different
            // when we build it for R/O cache and when we use it in the build in a
            // container
            expectRefresh(core)
            expectRefresh(utils)
    
            def result = container
                .withBuildDir(testBuildDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/AbstractCompositeBuildIntegrationTest.groovy

            assert operations.first(ExecuteTaskBuildOperationType) {
                it.details.buildPath == build && it.details.taskPath == taskPath
            }
        }
    
        void assertTaskExecutedOnce(String build, String taskPath) {
            operations.only(ExecuteTaskBuildOperationType) {
                it.details.buildPath == build && it.details.taskPath == taskPath
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:32:57 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. architecture/runtimes.md

    # Gradle runtimes
    
    Gradle is made up of the following processes that work together to "run the build":
    
    - Gradle daemon. This is the process that actually runs the build. It hosts build logic and coordinates the lifecycle of the build. It is a long-running daemon process.
    - CLI client. This is the `gradle` or `gradlew` command, and is responsible for locating, starting and interacting with the Gradle daemon, potentially downloading the Gradle distribution. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/groovy/build.gradle

    plugins {
        id 'java-library'
        id 'maven-publish'
    
        // this plugin comes from an included build - it fakes a maven repository to allow executing the authentication flow
        id 'maven-repository-stub'
    }
    
    version = '1.0.2'
    group = 'com.example'
    
    // tag::publication[]
    publishing {
        publications {
            library(MavenPublication) {
                from components.java
            }
        }
    // tag::repositories[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 648 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/kotlin/build.gradle.kts

    plugins {
        `java-library`
        `maven-publish`
    
        // this plugin comes from an included build - it fakes a maven repository to allow executing the authentication flow
        id("maven-repository-stub")
    }
    
    version = "1.0.2"
    group = "com.example"
    
    // tag::publication[]
    publishing {
        publications {
            create<MavenPublication>("library") {
                from(components.getByName("java"))
            }
        }
    // tag::repositories[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 673 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_list.txt

    # installed target should indeed be stale, since we didn't build it
    # with -cover.
    stale -cover m/example
    
    # Collect build ID from for m/example built with -cover.
    go list -cover -export -f '{{.BuildID}}' m/example
    cp stdout $WORK/listbuildid.txt
    
    # Now build the m/example binary with coverage.
    go build -cover -o $WORK/m.exe m/example
    
    # Ask for the binary build ID by running "go tool buildid".
    go tool buildid $WORK/m.exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 22:47:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. ci/official/wheel_test/README.md

    description will be provided once it's integrated into presubmit.
    
    ### test_import_api_packages
    
    This Python test verifies whether the API v2 packages can be imported from the
    current build. It utilizes the `_api/v2/api_packages.txt` list of packages from
    the local wheel file specified in the `requirements_lock_<python_version>.txt`.
    
    Packages are imported one by one in alphabetical order during runtime.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/runtime/testdata/testfaketime/faketime.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test faketime support. This is its own test program because we have
    // to build it with custom build tags and hence want to minimize
    // dependencies.
    
    package main
    
    import (
    	"os"
    	"time"
    )
    
    func main() {
    	println("line 1")
    	// Stream switch, increments time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 04 17:56:53 UTC 2019
    - 732 bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/builder.patchelf/build_patchelf.sh

    # ==============================================================================
    
    # Need a newer version of patchelf as the installed version is buggy in 20.04
    # so get patchelf source from 22.04 ie 'jammy' and build it to avoid dependency
    # problems that would occur with a binary package
    
    mkdir -p /patchelf
    cd /patchelf
    echo deb-src http://ports.ubuntu.com/ubuntu-ports/ jammy universe>>/etc/apt/sources.list
    apt-get update
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 15:53:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top